pub trait MacroParamElement: Clone {
    fn empty() -> Self;
    fn is_single(&self) -> bool;
    fn is_list(&self) -> bool;
    fn single_argument(&self) -> &str;
    fn list_argument(&self) -> &[Box<Self, Global>];
}

Required Methods

Implementors