EnumIterable

Trait EnumIterable 

Source
pub trait EnumIterable {
    type Iterator: Iterator<Item = Self>;

    // Required method
    fn iter() -> Self::Iterator;
}
Expand description

Allow iterating over enum variants for enums that have #[derive(EnumIter)].

Wrapper around strum’s IntoEnumIter so that users don’t need to know about strum

Required Associated Types§

Source

type Iterator: Iterator<Item = Self>

Required Methods§

Source

fn iter() -> Self::Iterator

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§