Enum iced_x86::DecoderError
source · [−]#[non_exhaustive]
pub enum DecoderError {
None,
InvalidInstruction,
NoMoreBytes,
}
Expand description
Decoder error
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No error. The last decoded instruction is a valid instruction
InvalidInstruction
It’s an invalid instruction or an invalid encoding of an existing instruction (eg. some reserved bit is set/cleared)
NoMoreBytes
There’s not enough bytes left to decode the instruction
Implementations
sourceimpl DecoderError
impl DecoderError
sourcepub fn values(
) -> impl Iterator<Item = DecoderError> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values(
) -> impl Iterator<Item = DecoderError> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all DecoderError
enum values
Trait Implementations
sourceimpl Clone for DecoderError
impl Clone for DecoderError
sourcefn clone(&self) -> DecoderError
fn clone(&self) -> DecoderError
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DecoderError
impl Debug for DecoderError
sourceimpl Default for DecoderError
impl Default for DecoderError
sourceimpl Hash for DecoderError
impl Hash for DecoderError
sourceimpl Ord for DecoderError
impl Ord for DecoderError
sourcefn cmp(&self, other: &DecoderError) -> Ordering
fn cmp(&self, other: &DecoderError) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<DecoderError> for DecoderError
impl PartialEq<DecoderError> for DecoderError
sourcefn eq(&self, other: &DecoderError) -> bool
fn eq(&self, other: &DecoderError) -> bool
sourceimpl PartialOrd<DecoderError> for DecoderError
impl PartialOrd<DecoderError> for DecoderError
sourcefn partial_cmp(&self, other: &DecoderError) -> Option<Ordering>
fn partial_cmp(&self, other: &DecoderError) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl TryFrom<usize> for DecoderError
impl TryFrom<usize> for DecoderError
impl Copy for DecoderError
impl Eq for DecoderError
impl StructuralEq for DecoderError
impl StructuralPartialEq for DecoderError
Auto Trait Implementations
impl RefUnwindSafe for DecoderError
impl Send for DecoderError
impl Sync for DecoderError
impl Unpin for DecoderError
impl UnwindSafe for DecoderError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more