pub struct Let<'source> {
pub let_token: Token<'source>,
pub binding: Option<Binding<'source>>,
pub equals_token: Option<Token<'source>>,
pub expression: Option<Box<Expression<'source>>>,
pub semicolon_token: Option<Token<'source>>,
pub diagnostics: Diagnostics<'source>,
}Fields§
§let_token: Token<'source>§binding: Option<Binding<'source>>§equals_token: Option<Token<'source>>§expression: Option<Box<Expression<'source>>>§semicolon_token: Option<Token<'source>>§diagnostics: Diagnostics<'source>Implementations§
Trait Implementations§
impl<'source> Eq for Let<'source>
impl<'source> StructuralPartialEq for Let<'source>
Auto Trait Implementations§
impl<'source> Freeze for Let<'source>
impl<'source> RefUnwindSafe for Let<'source>
impl<'source> Send for Let<'source>
impl<'source> Sync for Let<'source>
impl<'source> Unpin for Let<'source>
impl<'source> UnwindSafe for Let<'source>
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