pub enum MemoryRefItem {
ScaledRegister(Register, isize),
Register(Register),
Displacement(Expr),
}Expand description
Memory ref items
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryRefItem
impl RefUnwindSafe for MemoryRefItem
impl Send for MemoryRefItem
impl Sync for MemoryRefItem
impl Unpin for MemoryRefItem
impl UnwindSafe for MemoryRefItem
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