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)
Tuple Fields
An associated constant within an impl block.
Method(ImplItemMethod)
Tuple Fields
A method within an impl block.
Type(ImplItemType)
Tuple Fields
0: ImplItemType
An associated type within an impl block.
Macro(ImplItemMacro)
Tuple Fields
A macro invocation within an impl block.
Verbatim(TokenStream)
Tuple Fields
0: 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