Struct syntax::ast::LocalUnstable [-] [+] [src]

pub struct Local {
    pub pat: P<Pat>,
    pub ty: Option<P<Ty>>,
    pub init: Option<P<Expr>>,
    pub id: NodeId,
    pub span: Span,
    pub source: LocalSource,
}

Local represents a let statement, e.g., let <pat>:<ty> = <expr>;

Fields

pat
ty
init
id
span
source

Trait Implementations

Derived Implementations

impl Debug for Local

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for Local

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for Local

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Local, Error>

impl Encodable for Local

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), Error>

impl Eq for Local

fn assert_receiver_is_total_eq(&self)

impl PartialEq for Local

fn eq(&self, __arg_0: &Local) -> bool

fn ne(&self, __arg_0: &Local) -> bool

impl Clone for Local

fn clone(&self) -> Local

fn clone_from(&mut self, source: &Self)