Trait xso::AsXml

source ·
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 Items.

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§

source

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§

source

fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl AsXml for Element

Available on crate feature minidom only.
§

type ItemIter<'a> = ElementAsXml<'a>

source§

fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>

Implementors§