pub struct PoisonedInput<I>(pub I);Expand description
Rejection of an input after a serialized executor was poisoned.
Tuple Fields§
§0: IInput whose ownership was not accepted.
Trait Implementations§
Source§impl<I: Debug> Debug for PoisonedInput<I>
impl<I: Debug> Debug for PoisonedInput<I>
Source§impl<I> Display for PoisonedInput<I>
impl<I> Display for PoisonedInput<I>
Source§impl<I> Error for PoisonedInput<I>
impl<I> Error for PoisonedInput<I>
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()
Auto Trait Implementations§
impl<I> Freeze for PoisonedInput<I>where
I: Freeze,
impl<I> RefUnwindSafe for PoisonedInput<I>where
I: RefUnwindSafe,
impl<I> Send for PoisonedInput<I>where
I: Send,
impl<I> Sync for PoisonedInput<I>where
I: Sync,
impl<I> Unpin for PoisonedInput<I>where
I: Unpin,
impl<I> UnsafeUnpin for PoisonedInput<I>where
I: UnsafeUnpin,
impl<I> UnwindSafe for PoisonedInput<I>where
I: 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