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

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§

Implementors§