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§
sourcetype EventIter: Iterator<Item = Result<Event, Error>>
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§
sourcefn into_event_iter(self) -> Result<Self::EventIter, Error>
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
Available on crate feature minidom
only.
impl IntoXml for Element
Available on crate feature
minidom
only.