Expand description
Type-level-enum representing whether a trait is implemented or not implemented.
Structs§
- Implemented
- Describes that a trait must be implemented.
- Unimplemented
- Describes that a trait does not need to be implemented.
Traits§
- Impl
From_ - Converts a type to either
Unimplemented
orImplemented
. - Implementability
- Trait for
Implemented
andUnimplemented
Type Aliases§
- Impl
From - Converts
B
to eitherUnimplemented<T>
orImplemented<T>
.