[][src]Struct async_weighted_semaphore::PoisonError

pub struct PoisonError;

An error returned by Semaphore::acquire and Semaphore::acquire_arc to indicate the Semaphore has been poisoned. See Semaphore::acquire_arc for an example usage.

Trait Implementations

impl Clone for PoisonError[src]

impl Copy for PoisonError[src]

impl Debug for PoisonError[src]

impl Default for PoisonError[src]

impl Display for PoisonError[src]

impl Eq for PoisonError[src]

impl Error for PoisonError[src]

impl From<PoisonError> for TryAcquireError[src]

impl Hash for PoisonError[src]

impl Ord for PoisonError[src]

impl PartialEq<PoisonError> for PoisonError[src]

impl PartialOrd<PoisonError> for PoisonError[src]

impl StructuralEq for PoisonError[src]

impl StructuralPartialEq for PoisonError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.