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: T
Implementations§
source§impl<T> DispatchError<T>
impl<T> DispatchError<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consume the error, yielding the dispatchable that failed to be sent.
Trait Implementations§
source§impl<T: Clone> Clone for DispatchError<T>
impl<T: Clone> Clone for DispatchError<T>
source§fn clone(&self) -> DispatchError<T>
fn clone(&self) -> DispatchError<T>
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<T> Debug for DispatchError<T>
impl<T> Debug for DispatchError<T>
source§impl<T> Display for DispatchError<T>
impl<T> Display for DispatchError<T>
source§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()
source§impl<T: PartialEq> PartialEq for DispatchError<T>
impl<T: PartialEq> PartialEq for DispatchError<T>
impl<T: Copy> Copy for DispatchError<T>
impl<T: Eq> Eq for DispatchError<T>
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,
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
)