Enum maitake::scheduler::TryStealError
source · #[non_exhaustive]pub enum TryStealError {
Busy,
Empty,
}
Expand description
Errors returned by Injector::try_steal
, Scheduler::try_steal
, and
StaticScheduler::try_steal
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Busy
Tasks could not be stolen because the targeted queue already has a consumer.
Empty
No tasks were available to steal.
Trait Implementations§
source§impl Clone for TryStealError
impl Clone for TryStealError
source§fn clone(&self) -> TryStealError
fn clone(&self) -> TryStealError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TryStealError
impl Debug for TryStealError
source§impl PartialEq for TryStealError
impl PartialEq for TryStealError
source§fn eq(&self, other: &TryStealError) -> bool
fn eq(&self, other: &TryStealError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TryStealError
impl StructuralEq for TryStealError
impl StructuralPartialEq for TryStealError
Auto Trait Implementations§
impl RefUnwindSafe for TryStealError
impl Send for TryStealError
impl Sync for TryStealError
impl Unpin for TryStealError
impl UnwindSafe for TryStealError
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