Struct devise::syn::ForeignItemStatic [−][src]
pub struct ForeignItemStatic {
pub attrs: Vec<Attribute, Global>,
pub vis: Visibility,
pub static_token: Static,
pub mutability: Option<Mut>,
pub ident: Ident,
pub colon_token: Colon,
pub ty: Box<Type, Global>,
pub semi_token: Semi,
}
Expand description
A foreign static item in an extern
block: static ext: u8
.
This type is available if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute, Global>
vis: Visibility
static_token: Static
mutability: Option<Mut>
ident: Ident
colon_token: Colon
ty: Box<Type, Global>
semi_token: Semi
Trait Implementations
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 ForeignItemStatic
impl !Send for ForeignItemStatic
impl !Sync for ForeignItemStatic
impl Unpin for ForeignItemStatic
impl UnwindSafe for ForeignItemStatic
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