Struct syntex_syntax::ast::FieldPat [] [src]

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

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]

Serialize a value using an Encoder.

impl Decodable for FieldPat
[src]

Deserialize a value using a Decoder.

impl Hash for FieldPat
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Debug for FieldPat
[src]

Formats the value using the given formatter.