[][src]Struct ufut::PollState

#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct PollState<F, S> { /* fields omitted */ }

Future for the poll_state() function.

Trait Implementations

impl<F, S> Debug for PollState<F, S>[src]

impl<F, S, T> Future for PollState<F, S> where
    F: FnMut(&mut S, &mut Context<'_>) -> Poll<T>, 
[src]

type Output = T

The type of value produced on completion.

Auto Trait Implementations

impl<F, S> RefUnwindSafe for PollState<F, S> where
    F: RefUnwindSafe,
    S: RefUnwindSafe

impl<F, S> Send for PollState<F, S> where
    F: Send,
    S: Send

impl<F, S> Sync for PollState<F, S> where
    F: Sync,
    S: Sync

impl<F, S> Unpin for PollState<F, S> where
    F: Unpin,
    S: Unpin

impl<F, S> UnwindSafe for PollState<F, S> where
    F: UnwindSafe,
    S: 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, 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.