pub enum SafepointDriveError<Id, E, S> {
RootScan(RootScanError),
Safepoint(S),
Drive(DriveError<Id, E>),
}Expand description
A refusal from root publication or instruction execution during safepoint driving.
Variants§
RootScan(RootScanError)
The complete root view exceeded its explicit budget.
Safepoint(S)
The consumer rejected a complete root view.
Drive(DriveError<Id, E>)
Ordinary machine driving failed.
Trait Implementations§
Source§impl<Id: Clone, E: Clone, S: Clone> Clone for SafepointDriveError<Id, E, S>
impl<Id: Clone, E: Clone, S: Clone> Clone for SafepointDriveError<Id, E, S>
Source§fn clone(&self) -> SafepointDriveError<Id, E, S>
fn clone(&self) -> SafepointDriveError<Id, E, S>
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, S: Eq> Eq for SafepointDriveError<Id, E, S>
impl<Id: PartialEq, E: PartialEq, S: PartialEq> StructuralPartialEq for SafepointDriveError<Id, E, S>
Auto Trait Implementations§
impl<Id, E, S> Freeze for SafepointDriveError<Id, E, S>
impl<Id, E, S> RefUnwindSafe for SafepointDriveError<Id, E, S>
impl<Id, E, S> Send for SafepointDriveError<Id, E, S>
impl<Id, E, S> Sync for SafepointDriveError<Id, E, S>
impl<Id, E, S> Unpin for SafepointDriveError<Id, E, S>
impl<Id, E, S> UnsafeUnpin for SafepointDriveError<Id, E, S>
impl<Id, E, S> UnwindSafe for SafepointDriveError<Id, E, S>
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