pub trait ArgumentList: Sized {
// Required method
fn parse_arguments(attr: &Attribute) -> Self;
}
Expand description
A parsable list of arguments
Required Methods§
Sourcefn parse_arguments(attr: &Attribute) -> Self
fn parse_arguments(attr: &Attribute) -> Self
Parses the arguments of an attribute
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.