Skip to main content

IntoXmlFragment

Trait IntoXmlFragment 

Source
pub trait IntoXmlFragment {
    // Required method
    fn into_xml_fragment(self) -> XmlResult<FragmentBuilder>;
}
Expand description

Converts values into XML fragments for builder composition.

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoXmlFragment for &str

Source§

impl IntoXmlFragment for String

Source§

impl<T> IntoXmlFragment for Option<T>
where T: IntoXmlFragment,

Source§

impl<T> IntoXmlFragment for Vec<T>
where T: IntoXmlFragment,

Implementors§