pub struct PoisonError<T> { /* private fields */ }
Expand description
A type of error which can be returned whenever a lock is acquired.
Both Mutex
es and RwLock
s are poisoned whenever a thread fails while the lock
is held. The precise semantics for when a lock is poisoned is documented on
each lock, but once a lock is poisoned then all future acquisitions will
return this error.
Implementations§
Source§impl<T> PoisonError<T>
impl<T> PoisonError<T>
Sourcepub fn new(guard: T) -> PoisonError<T>
pub fn new(guard: T) -> PoisonError<T>
Creates a PoisonError
.
This is generally created by methods like Mutex::lock
or RwLock::read
.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes this error indicating that a lock is poisoned, returning the underlying guard to allow access regardless.
Trait Implementations§
Source§impl<T> Debug for PoisonError<T>
impl<T> Debug for PoisonError<T>
Source§impl<T> Display for PoisonError<T>
impl<T> Display for PoisonError<T>
Source§impl<T> Error for PoisonError<T>
impl<T> Error for PoisonError<T>
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl<T> From<PoisonError<T>> for TryLockError<T>
impl<T> From<PoisonError<T>> for TryLockError<T>
Source§fn from(err: PoisonError<T>) -> TryLockError<T>
fn from(err: PoisonError<T>) -> TryLockError<T>
Converts to this type from the input type.
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> 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