pub trait EnumIterwhere
Self: Sized,{
// Required method
fn variants() -> &'static [Self];
}Expand description
Get all variants.
See also the IntoEnumIterator trait of the strum crate for a
version which can be automatically derived.
Required Methods§
Object Safety§
This trait is not object safe.