pub enum CurrentParkDisposition {
NotifiedBeforeBlock,
BlockedAndResumed,
}Expand description
Scheduler disposition of one completed current-thread park transaction.
Variants§
NotifiedBeforeBlock
A scheduler notification cancelled the park before schedule-out.
BlockedAndResumed
The current thread committed Blocked, switched out, and later resumed.
Trait Implementations§
Source§impl Clone for CurrentParkDisposition
impl Clone for CurrentParkDisposition
Source§fn clone(&self) -> CurrentParkDisposition
fn clone(&self) -> CurrentParkDisposition
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 CurrentParkDisposition
Source§impl Debug for CurrentParkDisposition
impl Debug for CurrentParkDisposition
impl Eq for CurrentParkDisposition
Source§impl PartialEq for CurrentParkDisposition
impl PartialEq for CurrentParkDisposition
impl StructuralPartialEq for CurrentParkDisposition
Auto Trait Implementations§
impl Freeze for CurrentParkDisposition
impl RefUnwindSafe for CurrentParkDisposition
impl Send for CurrentParkDisposition
impl Sync for CurrentParkDisposition
impl Unpin for CurrentParkDisposition
impl UnsafeUnpin for CurrentParkDisposition
impl UnwindSafe for CurrentParkDisposition
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