Enum iced_x86::DecoderError
source · #[non_exhaustive]pub enum DecoderError {
None = 0,
InvalidInstruction = 1,
NoMoreBytes = 2,
}
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 = 0
No error. The last decoded instruction is a valid instruction
InvalidInstruction = 1
It’s an invalid instruction or an invalid encoding of an existing instruction (eg. some reserved bit is set/cleared)
NoMoreBytes = 2
There’s not enough bytes left to decode the instruction
Implementations§
source§impl 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§
source§impl Clone for DecoderError
impl Clone for DecoderError
source§fn clone(&self) -> DecoderError
fn clone(&self) -> DecoderError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DecoderError
impl Debug for DecoderError
source§impl Default for DecoderError
impl Default for DecoderError
source§impl<'de> Deserialize<'de> for DecoderError
impl<'de> Deserialize<'de> for DecoderError
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for DecoderError
impl Hash for DecoderError
source§impl Ord for DecoderError
impl Ord for DecoderError
source§fn cmp(&self, other: &DecoderError) -> Ordering
fn cmp(&self, other: &DecoderError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DecoderError
impl PartialEq for DecoderError
source§fn eq(&self, other: &DecoderError) -> bool
fn eq(&self, other: &DecoderError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DecoderError
impl PartialOrd for DecoderError
source§fn partial_cmp(&self, other: &DecoderError) -> Option<Ordering>
fn partial_cmp(&self, other: &DecoderError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl Serialize for DecoderError
impl Serialize for DecoderError
source§impl 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§
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