Enum devise::syn::ForeignItem [−][src]
pub enum ForeignItem {
Fn(ForeignItemFn),
Static(ForeignItemStatic),
Type(ForeignItemType),
Macro(ForeignItemMacro),
Verbatim(ForeignItemVerbatim),
}
Expand description
An item within an extern
block.
This type is available 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.
This type is available if Syn is built with the "full"
feature.
Tuple Fields of Fn
Static(ForeignItemStatic)
A foreign static item in an extern
block: static ext: u8
.
This type is available if Syn is built with the "full"
feature.
Tuple Fields of Static
Type(ForeignItemType)
A foreign type in an extern
block: type void
.
This type is available if Syn is built with the "full"
feature.
Tuple Fields of Type
Macro(ForeignItemMacro)
A macro invocation within an extern block.
This type is available if Syn is built with the "full"
feature.
Tuple Fields of Macro
Verbatim(ForeignItemVerbatim)
Tokens in an extern
block not interpreted by Syn.
This type is available if Syn is built with the "full"
feature.
Tuple Fields of Verbatim
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more