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

Required Methods§

meta_item is the attribute, and item is the item being modified.

Implementors§