Enum syn::ImplItem [−][src]
pub enum ImplItem { Const(ImplItemConst), Method(ImplItemMethod), Type(ImplItemType), Macro(ImplItemMacro), Verbatim(TokenStream), // some variants omitted }
Expand description
An item within an impl block.
This type is available only if Syn is built with the "full"
feature.
Syntax tree enum
This type is a syntax tree enum.
Variants
An associated constant within an impl block.
Tuple Fields of Const
A method within an impl block.
Tuple Fields of Method
An associated type within an impl block.
Tuple Fields of Type
0: ImplItemType
A macro invocation within an impl block.
Tuple Fields of Macro
Tokens within an impl block not interpreted by Syn.
Tuple Fields of Verbatim
0: TokenStream
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for ImplItem
impl UnwindSafe for ImplItem
Blanket Implementations
Mutably borrows from an owned value. Read more