[][src]Struct actix_taskqueue::messages::Pop

pub struct Pop<T> { /* fields omitted */ }

Pop Message

The message that will be sent from consumers (workers) to get the next available task if exists.

Usage:

let msg = Pop::<i32>::new();

A PopError will be returned if there's no more task available in the queue.

Implementations

impl<T> Pop<T>[src]

pub fn new() -> Pop<T>[src]

Trait Implementations

impl<T: Clone> Clone for Pop<T>[src]

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

impl<T: Default + Sized + Unpin + 'static> Handler<Pop<T>> for TaskQueue<T>[src]

type Result = Result<T, PopError>

The type of value that this handler will return.

impl<T: 'static> Message for Pop<T>[src]

type Result = Result<T, PopError>

The type of value that this message will resolved with if it is successful. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for Pop<T> where
    T: RefUnwindSafe

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

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

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

impl<T> UnwindSafe for Pop<T> where
    T: UnwindSafe

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,