Struct devise::syn::FieldsUnnamed [−][src]
pub struct FieldsUnnamed {
pub paren_token: Paren,
pub unnamed: Punctuated<Field, Comma>,
}
Expand description
Unnamed fields of a tuple struct or tuple variant such as Some(T)
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Fields
paren_token: Paren
unnamed: Punctuated<Field, Comma>
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 FieldsUnnamed
impl !Send for FieldsUnnamed
impl !Sync for FieldsUnnamed
impl Unpin for FieldsUnnamed
impl UnwindSafe for FieldsUnnamed
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