pub trait TryFromAttributes where
    Self: Sized
{ fn attr_name() -> &'static str; fn try_from_attributes(attrs: &[Attribute]) -> Result<Option<Self>>; fn from_attributes(attrs: &[Attribute]) -> Result<Self> { ... } }

Required Methods

Provided Methods

Implementors