pub trait TTMacroExpander {
    fn expand<'cx>(
        &self,
        ecx: &'cx mut ExtCtxt<'_>,
        span: Span,
        input: TokenStream
    ) -> Box<dyn MacResult + 'cx>; }
Expand description

Represents a thing that maps token trees to Macro Results

Required Methods

Implementors