Trait xso::IntoXml

source ·
pub trait IntoXml {
    type EventIter: Iterator<Item = Result<Event, Error>>;

    // Required method
    fn into_event_iter(self) -> Result<Self::EventIter, Error>;
}
Expand description

Trait allowing to consume a struct and iterate its contents as serialisable rxml::Event items.

Required Associated Types§

source

type EventIter: Iterator<Item = Result<Event, Error>>

The iterator type.

Required Methods§

source

fn into_event_iter(self) -> Result<Self::EventIter, Error>

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

Implementations on Foreign Types§

source§

impl IntoXml for Element

source§

impl<T: IntoXml> IntoXml for Option<T>

Implementors§