pub trait ImplFrom_<T: ?Sized> {
type Impl: ?Sized + Implementability;
}Expand description
Converts a type to either Unimplemented or Implemented.
The T type parameter represents the (un)required trait.
Required Associated Types§
Sourcetype Impl: ?Sized + Implementability
type Impl: ?Sized + Implementability
Either Unimplemented or Implemented.