Trait ArgumentList

Source
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

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.

Implementors§