pub enum MemAddr {
Register(Register),
RegisterPos(Register, i32),
Literal(Literal),
Ident(String),
}Variants§
Trait Implementations§
impl StructuralPartialEq for MemAddr
Auto Trait Implementations§
impl Freeze for MemAddr
impl RefUnwindSafe for MemAddr
impl Send for MemAddr
impl Sync for MemAddr
impl Unpin for MemAddr
impl UnsafeUnpin for MemAddr
impl UnwindSafe for MemAddr
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