pub trait AsXml {
type ItemIter<'x>: Iterator<Item = Result<Item<'x>, Error>>
where Self: 'x;
// Required method
fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>;
}
Expand description
Trait allowing to iterate a struct’s contents as serialisable
Item
s.
Important: Changing the ItemIter
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::AsXml>::ItemIter
.
Required Associated Types§
sourcetype ItemIter<'x>: Iterator<Item = Result<Item<'x>, Error>>
where
Self: 'x
type ItemIter<'x>: Iterator<Item = Result<Item<'x>, Error>> where Self: 'x
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::AsXml>::ItemIter
.
Required Methods§
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl AsXml for Element
Available on crate feature minidom
only.
impl AsXml for Element
Available on crate feature
minidom
only.