Trait toad_msg::opt::IterOptRefs

source ·
pub trait IterOptRefs<'a, V>where
    Self: Sized + IntoIterator<Item = (&'a OptNumber, &'a OptValue<V>)> + 'a,
    V: 'a,
{ fn opt_refs(self) -> OptRefIter<Self::IntoIter> ; }
Expand description

Given an iterator of option number + option value, produce an iterator of raw OptRef structs.

Required Methods§

Perform the conversion

Implementors§