Enum concurrent_queue::PushError [−][src]
pub enum PushError<T> { Full(T), Closed(T), }
Error which occurs when pushing into a full or closed queue.
Variants
The queue is full but not closed.
The queue is closed.
Implementations
impl<T> PushError<T>
[src]
impl<T> PushError<T>
[src]Trait Implementations
impl<T: Copy> Copy for PushError<T>
[src]
impl<T: Eq> Eq for PushError<T>
[src]
impl<T> StructuralEq for PushError<T>
[src]
impl<T> StructuralPartialEq for PushError<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for PushError<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for PushError<T> where
T: Send,
T: Send,
impl<T> Sync for PushError<T> where
T: Sync,
T: Sync,
impl<T> Unpin for PushError<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for PushError<T> where
T: UnwindSafe,
T: UnwindSafe,