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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".