pub enum Let<'a> {
Space(Space, Row, Col),
In(Row, Col),
DefAlignment(u16, Row, Col),
DefName(Row, Col),
Def(&'a str, &'a Def<'a>, Row, Col),
Destruct(&'a Destruct<'a>, Row, Col),
Body(&'a Expr<'a>, Row, Col),
IndentDef(Row, Col),
IndentIn(Row, Col),
IndentBody(Row, Col),
}Variants§
Space(Space, Row, Col)
In(Row, Col)
DefAlignment(u16, Row, Col)
DefName(Row, Col)
Def(&'a str, &'a Def<'a>, Row, Col)
Destruct(&'a Destruct<'a>, Row, Col)
Body(&'a Expr<'a>, Row, Col)
IndentDef(Row, Col)
IndentIn(Row, Col)
IndentBody(Row, Col)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Let<'a>
impl<'a> RefUnwindSafe for Let<'a>
impl<'a> Send for Let<'a>
impl<'a> Sync for Let<'a>
impl<'a> Unpin for Let<'a>
impl<'a> UnsafeUnpin for Let<'a>
impl<'a> UnwindSafe for Let<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more