pub trait AsXmlDyn {
// Required method
fn as_xml_dyn_iter<'x>(
&'x self,
) -> Result<Box<dyn Iterator<Item = Result<Item<'x>, Error>> + 'x>, Error>;
}
Expand description
Dyn-compatible version of AsXml
.
This trait is automatically implemented for all types which implement
AsXml
.