pub enum Eflags {
None,
R,
W,
RW,
}
Expand description
Describes if an instruction uses EFLAGS, and whether it reads, writes, or reads/writes the EFLAGS register. In the future, we might want to model specific EFLAGS bits instead of the entire EFLAGS register. Some related discussion in this GitHub issue https://github.com/bytecodealliance/wasmtime/issues/10298
Variants§
Implementations§
Trait Implementations§
impl Copy for Eflags
impl StructuralPartialEq for Eflags
Auto Trait Implementations§
impl Freeze for Eflags
impl RefUnwindSafe for Eflags
impl Send for Eflags
impl Sync for Eflags
impl Unpin for Eflags
impl UnwindSafe for Eflags
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