Struct syn::Local [−][src]
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