pub enum ArchError {
InvalidCondition,
InvalidRegister(u8),
InvalidField(String),
}Expand description
Enumerates all of the possible errors in this crate.
Variants§
InvalidCondition
Thrown when trying to parse a Condition from
an invalid encoding.
InvalidRegister(u8)
Thrown when trying to parse a Register from an
invalid encoding.
InvalidField(String)
Thrown when trying to parse a specific field type from an invalid encoding.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArchError
impl RefUnwindSafe for ArchError
impl Send for ArchError
impl Sync for ArchError
impl Unpin for ArchError
impl UnsafeUnpin for ArchError
impl UnwindSafe for ArchError
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