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§

source

type Impl: ?Sized + Implementability

Either Unimplemented or Implemented.

Implementors§