pub trait AttributeListStructurize<'a> {
    // Required method
    fn structurize(self, db: &'a dyn Database) -> Vec<Attribute<'a>>;
}Required Methods§
Sourcefn structurize(self, db: &'a dyn Database) -> Vec<Attribute<'a>>
 
fn structurize(self, db: &'a dyn Database) -> Vec<Attribute<'a>>
Return structured attributes for the given ast::AttributeList.