pub enum SyntaxExtensionKind {
    Bang(Box<dyn BangProcMacro + DynSync + DynSend>),
    LegacyBang(Box<dyn TTMacroExpander + DynSync + DynSend>),
    Attr(Box<dyn AttrProcMacro + DynSync + DynSend>),
    LegacyAttr(Box<dyn MultiItemModifier + DynSync + DynSend>),
    NonMacroAttr,
    Derive(Box<dyn MultiItemModifier + DynSync + DynSend>),
    LegacyDerive(Box<dyn MultiItemModifier + DynSync + DynSend>),
}
Expand description

A syntax extension kind.

Variants§

§

Bang(Box<dyn BangProcMacro + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn BangProcMacro + DynSync + DynSend>

An expander with signature TokenStream -> TokenStream.

A token-based function-like macro.

§

LegacyBang(Box<dyn TTMacroExpander + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn TTMacroExpander + DynSync + DynSend>

An expander with signature TokenStream -> AST.

An AST-based function-like macro.

§

Attr(Box<dyn AttrProcMacro + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn AttrProcMacro + DynSync + DynSend>

An expander with signature (TokenStream, TokenStream) -> TokenStream. The first TokenStream is the attribute itself, the second is the annotated item. The produced TokenStream replaces the input TokenStream.

A token-based attribute macro.

§

LegacyAttr(Box<dyn MultiItemModifier + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn MultiItemModifier + DynSync + DynSend>

An expander with signature (AST, AST) -> AST. The first AST fragment is the attribute itself, the second is the annotated item. The produced AST fragment replaces the input AST fragment.

An AST-based attribute macro.

§

NonMacroAttr

A trivial attribute “macro” that does nothing, only keeps the attribute and marks it as inert, thus making it ineligible for further expansion.

§

Derive(Box<dyn MultiItemModifier + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn MultiItemModifier + DynSync + DynSend>

An expander with signature TokenStream -> TokenStream. The produced TokenStream is appended to the input TokenStream.

FIXME: The text above describes how this should work. Currently it is handled identically to LegacyDerive. It should be migrated to a token-based representation like Bang and Attr, instead of using MultiItemModifier.

A token-based derive macro.

§

LegacyDerive(Box<dyn MultiItemModifier + DynSync + DynSend>)

Tuple Fields

§0: Box<dyn MultiItemModifier + DynSync + DynSend>

An expander with signature AST -> AST. The produced AST fragment is appended to the input AST fragment.

An AST-based derive macro.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 24 bytes

Size for each variant:

  • Bang: 16 bytes
  • LegacyBang: 16 bytes
  • Attr: 16 bytes
  • LegacyAttr: 16 bytes
  • NonMacroAttr: 0 bytes
  • Derive: 16 bytes
  • LegacyDerive: 16 bytes