Trait Label

Source
pub trait Label {
    // Required methods
    fn iter() -> impl Iterator<Item = Self>
       where Self: Sized;
    fn iter_ref() -> impl Iterator<Item = &'static Self>
       where Self: Sized + 'static;
}
Expand description

Trait that allows iterating over all labels.

Required Methods§

Source

fn iter() -> impl Iterator<Item = Self>
where Self: Sized,

Source

fn iter_ref() -> impl Iterator<Item = &'static Self>
where Self: Sized + 'static,

Implementors§