pub trait ExInto<T>: Sized {
type ExternalTraitSpecificationFor: Into<T>;
// Required method
exec fn into(self) -> ret : T;
}
Required Associated Types§
type ExternalTraitSpecificationFor: Into<T>
Required Methods§
Object Safety§
This trait is not object safe.