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
ident: Ident
                           The identifier for the field
pat: P<Pat>
                           The pattern the field is destructured to
is_shorthand: bool
                           
                           
                           
                           attrs: ThinVec<Attribute>
                           
                Trait Implementations
impl Clone for FieldPat[src] 
impl Clone for FieldPatfn clone(&self) -> FieldPat[src] 
fn clone(&self) -> FieldPatReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Encodable for FieldPat[src] 
impl Encodable for FieldPatimpl Decodable for FieldPat[src] 
impl Decodable for FieldPatimpl Debug for FieldPat[src] 
impl Debug for FieldPatfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl HasAttrs for FieldPat[src] 
impl HasAttrs for FieldPat