Struct IntelUndefWithXed
pub struct IntelUndefWithXed;
Expand description
Provides an implementation of UndefProvider
for the X64Arch
architecture.
Relies on the xed
disassembler.
Trait Implementations§
§impl UndefProvider<X64Arch> for IntelUndefWithXed
impl UndefProvider<X64Arch> for IntelUndefWithXed
§fn undefined_outputs_of(
&self,
instr: &[u8],
) -> Result<UndefinedOutputs<X64Arch>, Self::Error>
fn undefined_outputs_of( &self, instr: &[u8], ) -> Result<UndefinedOutputs<X64Arch>, Self::Error>
Returns a list of outputs that can be undefined, and the conditions under which they are undefined.
Auto Trait Implementations§
impl Freeze for IntelUndefWithXed
impl RefUnwindSafe for IntelUndefWithXed
impl Send for IntelUndefWithXed
impl Sync for IntelUndefWithXed
impl Unpin for IntelUndefWithXed
impl UnwindSafe for IntelUndefWithXed
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
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more