pub enum LocalDecl<'a> {
Var(LocalVariable<'a>),
Let(Let<'a>),
Const(LocalConst<'a>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LocalDecl<'a>
impl<'a> RefUnwindSafe for LocalDecl<'a>
impl<'a> Send for LocalDecl<'a>
impl<'a> Sync for LocalDecl<'a>
impl<'a> Unpin for LocalDecl<'a>
impl<'a> UnwindSafe for LocalDecl<'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