pub trait GetAttributes {
    fn get_attributes(&self) -> &Attributes;
    fn get_mut_attributes(&mut self) -> &mut Attributes;
}
Expand description

Structs that can return an Attributes instance.

Required Methods

Returns an Attributes instance

Returns a mutable Attributes instance

Implementors