Enum concurrency_traits::WriteOperation[][src]

pub enum WriteOperation<T> {
    Push(PushOperation<T>),
    PushFront(PushFrontOperation<T>),
}

An operation that adds to the queue

Variants

Push(PushOperation<T>)

A push operation. Synonymous with Queue::push.

PushFront(PushFrontOperation<T>)

A push front operation. Synonymous with PrependQueue::push_front.

Trait Implementations

impl<T: Debug> Debug for WriteOperation<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for WriteOperation<T>

impl<T> Send for WriteOperation<T> where
    T: Send

impl<T> Sync for WriteOperation<T> where
    T: Sync

impl<T> Unpin for WriteOperation<T> where
    T: Unpin

impl<T> !UnwindSafe for WriteOperation<T>

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, 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.