pub trait MutatorDescriptor {
    // Required method
    fn get_description_attributes(
        &self
    ) -> Box<dyn Iterator<Item = (AttrKey, AttrVal)> + '_>;
}
Expand description

Flat, infallible view on a mutator descriptor

Required Methods§

source

fn get_description_attributes( &self ) -> Box<dyn Iterator<Item = (AttrKey, AttrVal)> + '_>

Returned attribute iterator should not contain duplicate keys. It is effectively a map of key-value pairs.

Implementors§