HasAttributes

Trait HasAttributes 

Source
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;
}

Required Methods§

Source

fn attributes(&self) -> RowIterator<'a, Attribute<'a>>

Source

fn find_attribute(&self, name: &str) -> Option<Attribute<'a>>

Source

fn has_attribute(&self, name: &str) -> bool

Implementors§

Source§

impl<'a, R: AsRow<'a> + Into<HasAttribute<'a>>> HasAttributes<'a> for R