pub enum ParsedOperand {
Register(u32),
ImmediateI32(i32),
ImmediateF32(f32),
Address(u32),
Label(String),
}
Variants§
Trait Implementations§
Source§impl Clone for ParsedOperand
impl Clone for ParsedOperand
Source§fn clone(&self) -> ParsedOperand
fn clone(&self) -> ParsedOperand
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ParsedOperand
impl RefUnwindSafe for ParsedOperand
impl Send for ParsedOperand
impl Sync for ParsedOperand
impl Unpin for ParsedOperand
impl UnwindSafe for ParsedOperand
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