[][src]Struct syn_mid::FieldPat

pub struct FieldPat {
    pub attrs: Vec<Attribute>,
    pub member: Member,
    pub colon_token: Option<Colon>,
    pub pat: Box<Pat>,
}

A single field in a struct pattern.

Patterns like the fields of Foo { x, ref y, ref mut z } are treated the same as x: x, y: ref y, z: ref mut z but there is no colon token.

Fields

attrs: Vec<Attribute>member: Membercolon_token: Option<Colon>pat: Box<Pat>

Trait Implementations

impl ToTokens for FieldPat[src]

fn to_token_stream(&self) -> TokenStream[src]

Convert self directly into a TokenStream object. Read more

fn into_token_stream(self) -> TokenStream[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Sync for FieldPat

impl !Send for FieldPat

impl Unpin for FieldPat

impl !RefUnwindSafe for FieldPat

impl UnwindSafe for FieldPat

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]