pub trait AttributeStructurize<'a> {
// Required method
fn structurize(self, db: &'a dyn Database) -> Attribute<'a>;
}Required Methods§
Sourcefn structurize(self, db: &'a dyn Database) -> Attribute<'a>
fn structurize(self, db: &'a dyn Database) -> Attribute<'a>
Returns the structured attribute for the given ast::Attribute.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".