[][src]Struct waker_queue::Pop

pub struct Pop<'a, T, F> { /* fields omitted */ }

Future for WakerQueue.pop(wake_if)

Trait Implementations

impl<'a, T, F> Future for Pop<'a, T, F> where
    T: 'static + Send,
    F: Fn(&'a WakerQueue<T>) -> bool
[src]

type Output = Result<T, PopError>

The type of value produced on completion.

impl<'__pin, 'a, T, F> Unpin for Pop<'a, T, F> where
    __Origin<'__pin, 'a, T, F>: Unpin
[src]

Auto Trait Implementations

impl<'a, T, F> !RefUnwindSafe for Pop<'a, T, F>

impl<'a, T, F> Send for Pop<'a, T, F> where
    F: Send,
    T: Send

impl<'a, T, F> Sync for Pop<'a, T, F> where
    F: Sync,
    T: Send

impl<'a, T, F> !UnwindSafe for Pop<'a, T, F>

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.