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 PartialEq for FieldPat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for FieldPat
[src]

impl Encodable for FieldPat
[src]

impl Decodable for FieldPat
[src]

impl Hash for FieldPat
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

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