[][src]Struct lazy_queue::bounded::QueueProcessor

#[must_use = "futures do nothing unless polled"]
pub struct QueueProcessor<Item, P, I> where
    I: Future
{ /* fields omitted */ }

Lazy queue processor.

Trait Implementations

impl<Item, P, I> Future for QueueProcessor<Item, P, I> where
    P: FnMut(Item) -> I,
    I: Future
[src]

type Output = ()

The type of value produced on completion.

Auto Trait Implementations

impl<Item, P, I> !RefUnwindSafe for QueueProcessor<Item, P, I>

impl<Item, P, I> Send for QueueProcessor<Item, P, I> where
    I: Send,
    Item: Send,
    P: Send

impl<Item, P, I> Sync for QueueProcessor<Item, P, I> where
    I: Sync,
    Item: Send,
    P: Sync

impl<Item, P, I> Unpin for QueueProcessor<Item, P, I> where
    I: Unpin

impl<Item, P, I> !UnwindSafe for QueueProcessor<Item, P, I>

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.