pub trait AttributeValue {
// Required method
fn render(&self, f: &mut Formatter<'_>) -> Result;
}
Expand description
Represents an element attribute value.
This value should be escaped for double quotes for example.
The implementation of this trait on &str
already implements this.