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§
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<DecoderError> for DecoderError
impl PartialEq<DecoderError> for DecoderError
source§fn eq(&self, other: &DecoderError) -> bool
fn eq(&self, other: &DecoderError) -> bool
source§impl PartialOrd<DecoderError> for DecoderError
impl PartialOrd<DecoderError> 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 more