[][src]Struct syn::Local

pub struct Local {
    pub attrs: Vec<Attribute>,
    pub let_token: Let,
    pub pat: Pat,
    pub init: Option<(Eq, Box<Expr>)>,
    pub semi_token: Semi,
}

A local let binding: let x: u64 = s.parse()?.

This type is available if Syn is built with the "full" feature.

Fields

attrs: Vec<Attribute>let_token: Letpat: Patinit: Option<(Eq, Box<Expr>)>semi_token: Semi

Trait Implementations

impl Clone for Local[src]

impl Eq for Local[src]

impl PartialEq<Local> for Local[src]

impl Debug for Local[src]

impl Hash for Local[src]

impl StructuralPartialEq for Local[src]

impl StructuralEq for Local[src]

impl ToTokens for Local[src]

Auto Trait Implementations

impl !Send for Local

impl !Sync for Local

impl Unpin for Local

impl UnwindSafe for Local

impl !RefUnwindSafe for Local

Blanket Implementations

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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