Trait xso::IterItems

source ·
pub trait IterItems {
    type ItemIter<'x>: Iterator<Item = Result<Item<'x>, Error>>
       where Self: 'x;

    // Required method
    fn iter_items(&self) -> Self::ItemIter<'_>;
}
Expand description

Trait allowing to iterate the contents of a struct as serialisable rxml::Item items.

Required Associated Types§

source

type ItemIter<'x>: Iterator<Item = Result<Item<'x>, Error>> where Self: 'x

The iterator type.

Required Methods§

source

fn iter_items(&self) -> Self::ItemIter<'_>

Return an iterator which emits the contents of the struct or enum as serialisable rxml::Item items.

Object Safety§

This trait is not object safe.

Implementors§