pub enum WaitQueueWakeOutcome {
Delivered,
Retry,
Stale,
}Expand description
Result of selecting one exact WaitQueueWakeToken.
Variants§
Delivered
The selected park generation became runnable.
Retry
Delivery could not currently reach an online scheduler owner.
Stale
The park generation was cancelled, completed, or exited.
Trait Implementations§
Source§impl Clone for WaitQueueWakeOutcome
impl Clone for WaitQueueWakeOutcome
Source§fn clone(&self) -> WaitQueueWakeOutcome
fn clone(&self) -> WaitQueueWakeOutcome
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 Copy for WaitQueueWakeOutcome
Source§impl Debug for WaitQueueWakeOutcome
impl Debug for WaitQueueWakeOutcome
impl Eq for WaitQueueWakeOutcome
Source§impl PartialEq for WaitQueueWakeOutcome
impl PartialEq for WaitQueueWakeOutcome
impl StructuralPartialEq for WaitQueueWakeOutcome
Auto Trait Implementations§
impl Freeze for WaitQueueWakeOutcome
impl RefUnwindSafe for WaitQueueWakeOutcome
impl Send for WaitQueueWakeOutcome
impl Sync for WaitQueueWakeOutcome
impl Unpin for WaitQueueWakeOutcome
impl UnsafeUnpin for WaitQueueWakeOutcome
impl UnwindSafe for WaitQueueWakeOutcome
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