Struct syn::Local [−][src]
pub struct Local { pub attrs: Vec<Attribute>, pub let_token: Let, pub pats: Punctuated<Pat, Or>, pub ty: Option<(Colon, Box<Type>)>, 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: Let
pats: Punctuated<Pat, Or>
ty: Option<(Colon, Box<Type>)>
init: Option<(Eq, Box<Expr>)>
semi_token: Semi
Trait Implementations
impl ToTokens for Local
[src]
impl ToTokens for Local
fn to_tokens(&self, tokens: &mut TokenStream)
[src]
fn to_tokens(&self, tokens: &mut TokenStream)
Write self
to the given TokenStream
. Read more
fn into_token_stream(self) -> TokenStream
[src]
fn into_token_stream(self) -> TokenStream
Convert self
directly into a TokenStream
object. Read more
impl Debug for Local
[src]
impl Debug for Local
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for Local
[src]
impl Eq for Local
impl PartialEq for Local
[src]
impl PartialEq for Local
fn eq(&self, other: &Local) -> bool
[src]
fn eq(&self, other: &Local) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Local) -> bool
[src]
fn ne(&self, other: &Local) -> bool
This method tests for !=
.
impl Hash for Local
[src]
impl Hash for Local
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
[src]Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for Local
[src]
impl Clone for Local