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

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

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

Required methods

pub fn into_attribute_value(self) -> Option<String>[src]

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

Loading content...

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 IpAddr[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]

Loading content...

Implementors

Loading content...