Struct syn::FieldsUnnamed
source · [−]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 only if Syn is built with the "derive"
or
"full"
feature.
Fields
paren_token: Paren
unnamed: Punctuated<Field, Comma>
Trait Implementations
Performs the conversion.
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