#[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
impl Eq for TryStealError
impl StructuralPartialEq for TryStealError
Auto Trait Implementations§
impl Freeze for TryStealError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)