pub trait EasyArgument: EasyPeek {
    fn name_display() -> &'static str;
    fn name_span(&self) -> Span;
}
Expand description

Trait for parsable attributes. Attributes should be peekable to choose which attribute to parse.

Required Methods

Returns attribute name for display purposes.

Returns attribute name for display purposes.

Implementors