pub enum HaltCause {
BlockingFailure,
BlockingUnevaluable,
}Expand description
Why a run halted.
Variants§
BlockingFailure
A blocking gate was checked and did not hold.
BlockingUnevaluable
A blocking gate could not be checked.
Trait Implementations§
impl Copy for HaltCause
impl Eq for HaltCause
impl StructuralPartialEq for HaltCause
Auto Trait Implementations§
impl Freeze for HaltCause
impl RefUnwindSafe for HaltCause
impl Send for HaltCause
impl Sync for HaltCause
impl Unpin for HaltCause
impl UnsafeUnpin for HaltCause
impl UnwindSafe for HaltCause
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