pub trait Attributes {
// Required method
fn write_attributes<'a, 't, W: Write>(
self,
w: &mut TagOpening<'a, 't, W>,
) -> Result;
}
Expand description
Represents a list of attributes.
Required Methods§
Sourcefn write_attributes<'a, 't, W: Write>(
self,
w: &mut TagOpening<'a, 't, W>,
) -> Result
fn write_attributes<'a, 't, W: Write>( self, w: &mut TagOpening<'a, 't, W>, ) -> Result
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.