pub enum CleanArg {
Indirect {
nosplit: bool,
size: Option<Size>,
disp_size: Option<Size>,
base: Option<Register>,
index: Option<(Register, isize, Option<Expr>)>,
disp: Option<Value>,
},
Direct {
reg: Register,
},
JumpTarget {
jump: Jump,
size: Option<Size>,
},
IndirectJumpTarget {
jump: Jump,
size: Option<Size>,
},
Immediate {
value: Value,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CleanArg
impl RefUnwindSafe for CleanArg
impl Send for CleanArg
impl Sync for CleanArg
impl Unpin for CleanArg
impl UnwindSafe for CleanArg
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