pub trait CommonNum: Sized {
type Common;
// Required method
fn into_common(self) -> (Self::Common, Self::Common);
}
Required Associated Types§
Required Methods§
fn into_common(self) -> (Self::Common, Self::Common)
Object Safety§
This trait is not object safe.