pub trait HasAttributes<'a> {
// Required methods
fn attributes(&self) -> RowIterator<'a, Attribute<'a>> ⓘ;
fn find_attribute(&self, name: &str) -> Option<Attribute<'a>>;
fn has_attribute(&self, name: &str) -> bool;
}pub trait HasAttributes<'a> {
// Required methods
fn attributes(&self) -> RowIterator<'a, Attribute<'a>> ⓘ;
fn find_attribute(&self, name: &str) -> Option<Attribute<'a>>;
fn has_attribute(&self, name: &str) -> bool;
}