Trait minidom::convert::IntoAttributeValue [] [src]

pub trait IntoAttributeValue {
    fn into_attribute_value(self) -> Option<String>;
}

A trait for types which can be converted to an attribute value.

Required Methods

Turns this into an attribute string, or None if it shouldn't be added.

Implementations on Foreign Types

impl IntoAttributeValue for usize
[src]

impl IntoAttributeValue for u64
[src]

impl IntoAttributeValue for u32
[src]

impl IntoAttributeValue for u16
[src]

impl IntoAttributeValue for u8
[src]

impl IntoAttributeValue for isize
[src]

impl IntoAttributeValue for i64
[src]

impl IntoAttributeValue for i32
[src]

impl IntoAttributeValue for i16
[src]

impl IntoAttributeValue for i8
[src]

impl IntoAttributeValue for String
[src]

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

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

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

Implementors