pub enum VarDeco {
Mut {
loc: Loc,
},
Const {
loc: Loc,
},
}
Expand description
The decorator used to initialize a variable.
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for VarDeco
Auto Trait Implementations§
impl Freeze for VarDeco
impl RefUnwindSafe for VarDeco
impl Send for VarDeco
impl Sync for VarDeco
impl Unpin for VarDeco
impl UnwindSafe for VarDeco
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