Struct syn::FieldsUnnamed [−][src]
pub struct FieldsUnnamed { pub paren_token: Paren, pub unnamed: Punctuated<Field, Comma>, }
This is supported on crate features
full
or derive
only.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.
impl PartialEq<FieldsUnnamed> for FieldsUnnamed
This is supported on crate feature extra-traits
only.
impl PartialEq<FieldsUnnamed> for FieldsUnnamed
This is supported on crate feature
extra-traits
only.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