pub trait AttributeValue {
// Required method
fn to_attr_value(&self) -> Cow<'static, str>;
}Expand description
A trait for types that can be converted to an attribute value string.
Required Methods§
Sourcefn to_attr_value(&self) -> Cow<'static, str>
fn to_attr_value(&self) -> Cow<'static, str>
Convert to the attribute value string.