pub trait MultiItemModifier {
    fn expand(
        &self,
        ecx: &mut ExtCtxt<'_>,
        span: Span,
        meta_item: &MetaItem,
        item: Annotatable
    ) -> ExpandResult<Vec<Annotatable>, Annotatable>; }

Required Methods

Implementors