Struct DispatchError
pub struct DispatchError<T>(pub T);Expand description
An error that may be emitted when all worker threads are busy. It simply
returns the dispatchable value with a convenient fmt::Debug and
fmt::Display implementation.
Tuple Fields§
§0: TImplementations§
§impl<T> DispatchError<T>
impl<T> DispatchError<T>
pub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consume the error, yielding the dispatchable that failed to be sent.
Trait Implementations§
§impl<T> Clone for DispatchError<T>where
T: Clone,
impl<T> Clone for DispatchError<T>where
T: Clone,
§fn clone(&self) -> DispatchError<T>
fn clone(&self) -> DispatchError<T>
Returns a duplicate 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 more§impl<T> Debug for DispatchError<T>
impl<T> Debug for DispatchError<T>
§impl<T> Display for DispatchError<T>
impl<T> Display for DispatchError<T>
§impl<T> Error for DispatchError<T>
impl<T> Error for DispatchError<T>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
§impl<T> PartialEq for DispatchError<T>where
T: PartialEq,
impl<T> PartialEq for DispatchError<T>where
T: PartialEq,
impl<T> Copy for DispatchError<T>where
T: Copy,
impl<T> Eq for DispatchError<T>where
T: Eq,
impl<T> StructuralPartialEq for DispatchError<T>
Auto Trait Implementations§
impl<T> Freeze for DispatchError<T>where
T: Freeze,
impl<T> RefUnwindSafe for DispatchError<T>where
T: RefUnwindSafe,
impl<T> Send for DispatchError<T>where
T: Send,
impl<T> Sync for DispatchError<T>where
T: Sync,
impl<T> Unpin for DispatchError<T>where
T: Unpin,
impl<T> UnwindSafe for DispatchError<T>where
T: UnwindSafe,
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more