Trait minidom::convert::IntoElements [] [src]

pub trait IntoElements {
    fn into_elements(self, emitter: &mut ElementEmitter);
}

A trait for types which can be converted to one or multiple Elements.

Required Methods

Emits this as a sequence of text nodes and Elements.

Implementations on Foreign Types

impl<T: IntoElements> IntoElements for Vec<T>
[src]

[src]

impl<'a, T: IntoElements + Clone> IntoElements for &'a [T]
[src]

[src]

impl<T: IntoElements> IntoElements for Option<T>
[src]

[src]

impl IntoElements for String
[src]

[src]

impl<'a> IntoElements for &'a String
[src]

[src]

impl<'a> IntoElements for &'a str
[src]

[src]

Implementors