pub enum RuntimeErrorKind {
InvalidInstruction,
StackUnderflow,
StackOverflow,
MemoryAccessViolation,
DivisionByZero,
TypeConversion,
ResourceNotFound,
}
Variants§
InvalidInstruction
StackUnderflow
StackOverflow
MemoryAccessViolation
DivisionByZero
TypeConversion
ResourceNotFound
Trait Implementations§
Source§impl Debug for RuntimeErrorKind
impl Debug for RuntimeErrorKind
Source§impl PartialEq for RuntimeErrorKind
impl PartialEq for RuntimeErrorKind
impl StructuralPartialEq for RuntimeErrorKind
Auto Trait Implementations§
impl Freeze for RuntimeErrorKind
impl RefUnwindSafe for RuntimeErrorKind
impl Send for RuntimeErrorKind
impl Sync for RuntimeErrorKind
impl Unpin for RuntimeErrorKind
impl UnwindSafe for RuntimeErrorKind
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