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
Const(ImplItemConst)
An associated constant within an impl block.
Method(ImplItemMethod)
A method within an impl block.
Type(ImplItemType)
An associated type within an impl block.
Macro(ImplItemMacro)
A macro invocation within an impl block.
Verbatim(TokenStream)
Tokens within an impl block not interpreted by Syn.
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