pub trait IntoAttributeValue {
type Output;
// Required method
fn into_attribute_value(self) -> Self::Output;
}Expand description
Declares that this type can be converted into some other type, which is a valid attribute value.
Required Associated Types§
Required Methods§
Sourcefn into_attribute_value(self) -> Self::Output
fn into_attribute_value(self) -> Self::Output
Consumes this value, transforming it into an attribute value.