pub enum PoolRejection {
BacklogFull,
AffinityUnavailable,
}Expand description
Why a submitted job was not accepted by the pool.
Variants§
BacklogFull
The key’s selected stable slot is unknown or permanently retired.
Trait Implementations§
Source§impl Clone for PoolRejection
impl Clone for PoolRejection
Source§fn clone(&self) -> PoolRejection
fn clone(&self) -> PoolRejection
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 PoolRejection
Source§impl Debug for PoolRejection
impl Debug for PoolRejection
impl Eq for PoolRejection
Source§impl PartialEq for PoolRejection
impl PartialEq for PoolRejection
impl StructuralPartialEq for PoolRejection
Auto Trait Implementations§
impl Freeze for PoolRejection
impl RefUnwindSafe for PoolRejection
impl Send for PoolRejection
impl Sync for PoolRejection
impl Unpin for PoolRejection
impl UnsafeUnpin for PoolRejection
impl UnwindSafe for PoolRejection
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