pub enum ParseErrorCode {
TruncatedInstruction,
UnknownOpcode,
InvalidJumpTarget,
SelfReference,
InvalidAddressFamily,
PrefixLengthLongerThanAddress,
IndexOverflow,
}Variants§
TruncatedInstruction
UnknownOpcode
InvalidJumpTarget
SelfReference
InvalidAddressFamily
PrefixLengthLongerThanAddress
IndexOverflow
Trait Implementations§
Source§impl Debug for ParseErrorCode
impl Debug for ParseErrorCode
Source§impl PartialEq for ParseErrorCode
impl PartialEq for ParseErrorCode
Source§fn eq(&self, other: &ParseErrorCode) -> bool
fn eq(&self, other: &ParseErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParseErrorCode
impl StructuralPartialEq for ParseErrorCode
Auto Trait Implementations§
impl Freeze for ParseErrorCode
impl RefUnwindSafe for ParseErrorCode
impl Send for ParseErrorCode
impl Sync for ParseErrorCode
impl Unpin for ParseErrorCode
impl UnsafeUnpin for ParseErrorCode
impl UnwindSafe for ParseErrorCode
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