pub enum TryDequeueError {
    Empty,
    Inconsistent,
    Busy,
}
Expand description

Variants

Empty

No element was dequeued because the queue was empty.

Inconsistent

The queue is currently in an inconsistent state.

Since inconsistent states are very short-lived, the caller may want to try dequeueing a second time.

Busy

Another thread is currently calling MpscQueue::try_dequeue or MpscQueue::dequeue, or owns a Consumer or OwnedConsumer handle.

This is a multi-producer, single-consumer queue, so only a single thread may dequeue elements at any given time.

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.