pub enum Immediate {
Value(i32),
Label(Label),
}
Variants§
Implementations§
Trait Implementations§
Source§impl MulAssign<i32> for Immediate
impl MulAssign<i32> for Immediate
Source§fn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
Performs the
*=
operation. Read moreimpl StructuralPartialEq for Immediate
Auto Trait Implementations§
impl Freeze for Immediate
impl RefUnwindSafe for Immediate
impl Send for Immediate
impl Sync for Immediate
impl Unpin for Immediate
impl UnwindSafe for Immediate
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