pub enum Operand {
Ident(String),
Int(i64),
RegisterWithOffset(RegisterWithOffset),
}Variants§
Trait Implementations§
Source§impl From<RegisterWithOffset> for Operand
impl From<RegisterWithOffset> for Operand
Source§fn from(v: RegisterWithOffset) -> Self
fn from(v: RegisterWithOffset) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Operand
Auto Trait Implementations§
impl Freeze for Operand
impl RefUnwindSafe for Operand
impl Send for Operand
impl Sync for Operand
impl Unpin for Operand
impl UnwindSafe for Operand
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