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)
Tuple Fields
A foreign function in an extern
block.
Static(ForeignItemStatic)
Tuple Fields
A foreign static item in an extern
block: static ext: u8
.
Type(ForeignItemType)
Tuple Fields
A foreign type in an extern
block: type void
.
Macro(ForeignItemMacro)
Tuple Fields
A macro invocation within an extern block.
Verbatim(TokenStream)
Tuple Fields
0: TokenStream
Tokens in an extern
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 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