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