Struct syntax::ast::FieldPat[][src]

pub struct FieldPat {
    pub ident: Ident,
    pub pat: P<Pat>,
    pub is_shorthand: bool,
    pub attrs: ThinVec<Attribute>,
}

A single field in a struct pattern

Patterns like the fields of Foo { x, ref y, ref mut z } are treated the same asx: x, y: ref y, z: ref mut z, except is_shorthand is true

Fields

The identifier for the field

The pattern the field is destructured to

Trait Implementations

impl Clone for FieldPat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for FieldPat
[src]

impl Decodable for FieldPat
[src]

impl Debug for FieldPat
[src]

Formats the value using the given formatter. Read more

impl HasAttrs for FieldPat
[src]

Important traits for &'a [u8]

Auto Trait Implementations

impl !Send for FieldPat

impl !Sync for FieldPat