pub trait EnumUnitary: Clone + Into<i64> + Into<u64> + Into<isize> + Into<usize> + ToPrimitive + FromPrimitive + Sequence { }
Expand description

A collection of constraints for unitary enums.

See the enum_unitary! macro for defining instances of this trait.

Implementors