Enum syn::ForeignItem [−][src]
pub enum ForeignItem {
Fn(ForeignItemFn),
Static(ForeignItemStatic),
Type(ForeignItemType),
Macro(ForeignItemMacro),
Verbatim(TokenStream),
// some variants omitted
}
Expand description
An item within an extern
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
Fn(ForeignItemFn)
A foreign function in an extern
block.
Tuple Fields of Fn
Static(ForeignItemStatic)
A foreign static item in an extern
block: static ext: u8
.
Tuple Fields of Static
Type(ForeignItemType)
A foreign type in an extern
block: type void
.
Tuple Fields of Type
Macro(ForeignItemMacro)
A macro invocation within an extern block.
Tuple Fields of Macro
Verbatim(TokenStream)
Tokens in an extern
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 ForeignItem
impl !Send for ForeignItem
impl !Sync for ForeignItem
impl Unpin for ForeignItem
impl UnwindSafe for ForeignItem
Blanket Implementations
Mutably borrows from an owned value. Read more