pub enum ArchError {
UnsupportedArchitecture,
ContextSwitchFailed,
InvalidCpuState,
InterruptError,
FpuError,
InvalidInstruction,
}
Expand description
Architecture-specific errors.
Variants§
UnsupportedArchitecture
Unsupported architecture
ContextSwitchFailed
Context switch failed
InvalidCpuState
Invalid CPU state
InterruptError
Interrupt handling error
FpuError
FPU operation error
InvalidInstruction
Invalid instruction
Trait Implementations§
Source§impl From<ArchError> for ThreadError
impl From<ArchError> for ThreadError
impl Eq for ArchError
impl StructuralPartialEq for ArchError
Auto Trait Implementations§
impl Freeze for ArchError
impl RefUnwindSafe for ArchError
impl Send for ArchError
impl Sync for ArchError
impl Unpin 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