pub enum ImmediateValue {
Int(i64),
Addr(i64),
}Variants§
Trait Implementations§
Source§impl Add for ImmediateValue
impl Add for ImmediateValue
Source§type Output = ImmediateValue
type Output = ImmediateValue
The resulting type after applying the
+ operator.Source§fn add(self, other: Self) -> ImmediateValue
fn add(self, other: Self) -> ImmediateValue
Performs the
+ operation. Read moreSource§impl Clone for ImmediateValue
impl Clone for ImmediateValue
Source§fn clone(&self) -> ImmediateValue
fn clone(&self) -> ImmediateValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImmediateValue
impl Debug for ImmediateValue
Source§impl Div for ImmediateValue
impl Div for ImmediateValue
Source§type Output = ImmediateValue
type Output = ImmediateValue
The resulting type after applying the
/ operator.Source§fn div(self, other: Self) -> ImmediateValue
fn div(self, other: Self) -> ImmediateValue
Performs the
/ operation. Read moreSource§impl Mul for ImmediateValue
impl Mul for ImmediateValue
Source§type Output = ImmediateValue
type Output = ImmediateValue
The resulting type after applying the
* operator.Source§fn mul(self, other: Self) -> ImmediateValue
fn mul(self, other: Self) -> ImmediateValue
Performs the
* operation. Read moreSource§impl PartialEq for ImmediateValue
impl PartialEq for ImmediateValue
Source§impl Sub for ImmediateValue
impl Sub for ImmediateValue
Source§type Output = ImmediateValue
type Output = ImmediateValue
The resulting type after applying the
- operator.Source§fn sub(self, other: Self) -> ImmediateValue
fn sub(self, other: Self) -> ImmediateValue
Performs the
- operation. Read moreimpl StructuralPartialEq for ImmediateValue
Auto Trait Implementations§
impl Freeze for ImmediateValue
impl RefUnwindSafe for ImmediateValue
impl Send for ImmediateValue
impl Sync for ImmediateValue
impl Unpin for ImmediateValue
impl UnwindSafe for ImmediateValue
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