<link rel="stylesheet" href="../../noscript1.34.1.css">

[][src]Enum core::task::Poll

#[must_use = "this `Poll` may be a `Pending` variant, which should be handled"]
pub enum Poll<T> { Ready(T), Pending, }
🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Indicates whether a value is available or if the current task has been scheduled to receive a wakeup instead.

Variants

Ready(T)
🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Represents that a value is immediately ready.

Pending
🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Represents that a value is not ready yet.

When a function returns Pending, the function must also ensure that the current task is scheduled to be awoken when progress can be made.

Methods

impl<T> Poll<T>[src]

pub fn map<U, F>(self, f: F) -> Poll<U> where
    F: FnOnce(T) -> U, 
[src]

🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Changes the ready value of this Poll with the closure provided.

pub fn is_ready(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Returns true if this is Poll::Ready

pub fn is_pending(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Returns true if this is Poll::Pending

impl<T, E> Poll<Result<T, E>>[src]

pub fn map_ok<U, F>(self, f: F) -> Poll<Result<U, E>> where
    F: FnOnce(T) -> U, 
[src]

🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Changes the success value of this Poll with the closure provided.

pub fn map_err<U, F>(self, f: F) -> Poll<Result<T, U>> where
    F: FnOnce(E) -> U, 
[src]

🔬 This is a nightly-only experimental API. (futures_api #50547)

futures in libcore are unstable

Changes the error value of this Poll with the closure provided.

Trait Implementations

impl<T: Copy> Copy for Poll<T>[src]

impl<T, E> Try for Poll<Result<T, E>>[src]

type Ok = Poll<T>

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as successful.

type Error = E

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as failed.

impl<T, E> Try for Poll<Option<Result<T, E>>>[src]

type Ok = Poll<Option<T>>

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as successful.

type Error = E

🔬 This is a nightly-only experimental API. (try_trait #42327)

The type of this value when viewed as failed.

impl<T: PartialEq> PartialEq<Poll<T>> for Poll<T>[src]

impl<T: Eq> Eq for Poll<T>[src]

impl<T: Ord> Ord for Poll<T>[src]

fn max(self, other: Self) -> Self where
    Self: Sized
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self where
    Self: Sized
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<T: PartialOrd> PartialOrd<Poll<T>> for Poll<T>[src]

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> From<T> for Poll<T>[src]

impl<T: Hash> Hash for Poll<T>[src]

fn hash_slice<H: Hasher>(data: &[Self], state: &mut H) where
    Self: Sized
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryInto 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<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]