pub trait ItemExt {
    fn get_attributes(&self) -> Option<&[Attribute]>;
    fn get_attributes_mut(&mut self) -> Option<&mut Vec<Attribute>>;
    fn get_default_name(&self) -> Option<String>;
    fn is_mod(&self) -> bool;
}

Required Methods

Implementations on Foreign Types

Implementors