pub enum DriveError<Id, E> {
PermitMismatch,
EmptyFrames,
FrameLimit(FrameStackError),
Fault(LocatedFault<Id, E>),
}Expand description
A refusal produced by the iterative driver.
Variants§
PermitMismatch
The permit does not bind the exact supplied description.
EmptyFrames
No frame exists to execute.
FrameLimit(FrameStackError)
A guest call exceeded the explicit frame budget.
Fault(LocatedFault<Id, E>)
Instruction policy failed at a prepared source location.
Trait Implementations§
Source§impl<Id: Clone, E: Clone> Clone for DriveError<Id, E>
impl<Id: Clone, E: Clone> Clone for DriveError<Id, E>
Source§fn clone(&self) -> DriveError<Id, E>
fn clone(&self) -> DriveError<Id, E>
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<Id: Eq, E: Eq> Eq for DriveError<Id, E>
impl<Id: PartialEq, E: PartialEq> StructuralPartialEq for DriveError<Id, E>
Auto Trait Implementations§
impl<Id, E> Freeze for DriveError<Id, E>
impl<Id, E> RefUnwindSafe for DriveError<Id, E>where
Id: RefUnwindSafe,
E: RefUnwindSafe,
impl<Id, E> Send for DriveError<Id, E>
impl<Id, E> Sync for DriveError<Id, E>
impl<Id, E> Unpin for DriveError<Id, E>
impl<Id, E> UnsafeUnpin for DriveError<Id, E>where
Id: UnsafeUnpin,
E: UnsafeUnpin,
impl<Id, E> UnwindSafe for DriveError<Id, E>where
Id: UnwindSafe,
E: 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