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.

Important: Changing the EventIter associated type is considered a non-breaking change for any given implementation of this trait. Always refer to a type’s iterator type using fully-qualified notation, for example: <T as xso::IntoXml>::EventIter.

Required Associated Types§

source

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

The iterator type.

Important: Changing this type is considered a non-breaking change for any given implementation of this trait. Always refer to a type’s iterator type using fully-qualified notation, for example: <T as xso::IntoXml>::EventIter.

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

Implementors§