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

Flat, infallible view on a mutator descriptor

Required Methods§

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

Implementors§