pub trait ArgumentList: Sized {
    // Required method
    fn parse_arguments(attr: &Attribute) -> Self;
}
Expand description

A parsable list of arguments

Required Methods§

source

fn parse_arguments(attr: &Attribute) -> Self

Parses the arguments of an attribute

Implementors§