pub struct PoisonError<T> { /* private fields */ }Expand description
Error type for source-level compatibility with std::sync::PoisonError.
This implementation never actually poisons.
Implementations§
Source§impl<T> PoisonError<T>
impl<T> PoisonError<T>
Trait Implementations§
Source§impl<T> Debug for PoisonError<T>
impl<T> Debug for PoisonError<T>
Auto Trait Implementations§
impl<T> Freeze for PoisonError<T>where
T: Freeze,
impl<T> RefUnwindSafe for PoisonError<T>where
T: RefUnwindSafe,
impl<T> Send for PoisonError<T>where
T: Send,
impl<T> Sync for PoisonError<T>where
T: Sync,
impl<T> Unpin for PoisonError<T>where
T: Unpin,
impl<T> UnsafeUnpin for PoisonError<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for PoisonError<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