pub enum MachineAbrupt<A, I> {
Raise(A),
Interrupt(I),
BudgetExhausted,
Fault,
}Expand description
Abrupt terminal reasons carried through the control organ’s unwind vocabulary.
Variants§
Raise(A)
No prepared protected region handled a raised value.
Interrupt(I)
Execution stopped at an interruption checkpoint.
BudgetExhausted
The bounded drive consumed its complete allowance.
Fault
Admission, frame, or instruction execution failed closed.
Trait Implementations§
Source§impl<A: Clone, I: Clone> Clone for MachineAbrupt<A, I>
impl<A: Clone, I: Clone> Clone for MachineAbrupt<A, I>
Source§fn clone(&self) -> MachineAbrupt<A, I>
fn clone(&self) -> MachineAbrupt<A, I>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<A: Eq, I: Eq> Eq for MachineAbrupt<A, I>
impl<A: PartialEq, I: PartialEq> StructuralPartialEq for MachineAbrupt<A, I>
Auto Trait Implementations§
impl<A, I> Freeze for MachineAbrupt<A, I>
impl<A, I> RefUnwindSafe for MachineAbrupt<A, I>where
A: RefUnwindSafe,
I: RefUnwindSafe,
impl<A, I> Send for MachineAbrupt<A, I>
impl<A, I> Sync for MachineAbrupt<A, I>
impl<A, I> Unpin for MachineAbrupt<A, I>
impl<A, I> UnsafeUnpin for MachineAbrupt<A, I>where
A: UnsafeUnpin,
I: UnsafeUnpin,
impl<A, I> UnwindSafe for MachineAbrupt<A, I>where
A: UnwindSafe,
I: UnwindSafe,
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