Enum Poll

1.36.0 · Source
pub enum Poll {
    Ready(T),
    Pending,
}
Expand description

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

This is returned by Future::poll.

Variants§

§1.36.0

Ready(T)

Represents that a value is immediately ready.

§1.36.0

Pending

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.

Implementations§

Source§

impl Poll

1.36.0 · Source

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

Maps a Poll to Poll by applying a function to a contained value.

§Examples

Converts a Poll<String> into a Poll<usize>, consuming the original:

let poll_some_string = Poll::Ready(String::from("Hello, World!"));
// `Poll::map` takes self *by value*, consuming `poll_some_string`
let poll_some_len = poll_some_string.map(|s| s.len());

assert_eq!(poll_some_len, Poll::Ready(13));
1.36.0 (const: 1.49.0) · Source

pub const fn is_ready(&self) -> bool

Returns true if the poll is a Poll::Ready value.

§Examples
let x: Poll = Poll::Ready(2);
assert_eq!(x.is_ready(), true);

let x: Poll = Poll::Pending;
assert_eq!(x.is_ready(), false);
1.36.0 (const: 1.49.0) · Source

pub const fn is_pending(&self) -> bool

Returns true if the poll is a Pending value.

§Examples
let x: Poll = Poll::Ready(2);
assert_eq!(x.is_pending(), false);

let x: Poll = Poll::Pending;
assert_eq!(x.is_pending(), true);
Source§

impl Poll<Result>

1.36.0 · Source

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

Maps a Poll> to Poll> by applying a function to a contained Poll::Ready(Ok) value, leaving all other variants untouched.

This function can be used to compose the results of two functions.

§Examples
let res: Poll<Result_>> = Poll::Ready("12".parse());
let squared = res.map_ok(|n| n * n);
assert_eq!(squared, Poll::Ready(Ok(144)));
1.36.0 · Source

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

Maps a Poll::Ready> to Poll::Ready> by applying a function to a contained Poll::Ready(Err) value, leaving all other variants untouched.

This function can be used to pass through a successful result while handling an error.

§Examples
let res: Poll<Result_>> = Poll::Ready("oops".parse());
let res = res.map_err(|_| 0_u8);
assert_eq!(res, Poll::Ready(Err(0)));
Source§

impl Poll<Option<Result>>

1.51.0 · Source

pub fn map_ok(self, f: F) -> Poll<Option<Result>>
where F: FnOnce(T) -> U,

Maps a Poll>> to Poll>> by applying a function to a contained Poll::Ready(Some(Ok)) value, leaving all other variants untouched.

This function can be used to compose the results of two functions.

§Examples
let res: Poll<Option<Result_>>> = Poll::Ready(Some("12".parse()));
let squared = res.map_ok(|n| n * n);
assert_eq!(squared, Poll::Ready(Some(Ok(144))));
1.51.0 · Source

pub fn map_err(self, f: F) -> Poll<Option<Result>>
where F: FnOnce(E) -> U,

Maps a Poll::Ready>> to Poll::Ready>> by applying a function to a contained Poll::Ready(Some(Err)) value, leaving all other variants untouched.

This function can be used to pass through a successful result while handling an error.

§Examples
let res: Poll<Option<Result_>>> = Poll::Ready(Some("oops".parse()));
let res = res.map_err(|_| 0_u8);
assert_eq!(res, Poll::Ready(Some(Err(0))));

Trait Implementations§

1.36.0 · Source§

impl Clone for Poll
where T: Clone,

Source§

fn clone(&self) -> Poll

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
1.36.0 · Source§

impl Debug for Poll
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
1.36.0 · Source§

impl From for Poll

Source§

fn from(t: T) -> Poll

Moves the value into a Poll::Ready to make a Poll.

§Example
assert_eq!(Poll::from(true), Poll::Ready(true));
Source§

impl FromResidual<Result<Infallible, E>> for Poll<Option<Result>>
where F: From,

Source§

fn from_residual(x: Result<Infallible, E>) -> Poll<Option<Result>>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from a compatible Residual type. Read more
Source§

impl FromResidual<Result<Infallible, E>> for Poll<Result>
where F: From,

Source§

fn from_residual(x: Result<Infallible, E>) -> Poll<Result>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from a compatible Residual type. Read more
1.36.0 · Source§

impl Hash for Poll
where T: Hash,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

Feeds a slice of this type into the given Hasher. Read more
1.36.0 · Source§

impl Ord for Poll
where T: Ord,

Source§

fn cmp(&self, other: &Poll) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
1.36.0 · Source§

impl PartialEq for Poll
where T: PartialEq,

Source§

fn eq(&self, other: &Poll) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
1.36.0 · Source§

impl PartialOrd for Poll
where T: PartialOrd,

Source§

fn partial_cmp(&self, other: &Poll) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Try for Poll<Option<Result>>

Source§

type Output = Poll<Option>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
The type of the value produced by ? when not short-circuiting.
Source§

type Residual = Result<Infallible, E>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
The type of the value passed to FromResidual::from_residual as part of ? when short-circuiting. Read more
Source§

fn from_output( c: <Poll<Option<Result>> as Try>::Output, ) -> Poll<Option<Result>>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from its Output type. Read more
Source§

fn branch( self, ) -> ControlFlow<<Poll<Option<Result>> as Try>::Residual, <Poll<Option<Result>> as Try>::Output>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Used in ? to decide whether the operator should produce a value (because this returned ControlFlow::Continue) or propagate a value back to the caller (because this returned ControlFlow::Break). Read more
Source§

impl Try for Poll<Result>

Source§

type Output = Poll

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
The type of the value produced by ? when not short-circuiting.
Source§

type Residual = Result<Infallible, E>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
The type of the value passed to FromResidual::from_residual as part of ? when short-circuiting. Read more
Source§

fn from_output(c: <Poll<Result> as Try>::Output) -> Poll<Result>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from its Output type. Read more
Source§

fn branch( self, ) -> ControlFlow<<Poll<Result> as Try>::Residual, <Poll<Result> as Try>::Output>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
Used in ? to decide whether the operator should produce a value (because this returned ControlFlow::Continue) or propagate a value back to the caller (because this returned ControlFlow::Break). Read more
1.36.0 · Source§

impl Copy for Poll
where T: Copy,

1.36.0 · Source§

impl Eq for Poll
where T: Eq,

1.36.0 · Source§

impl StructuralPartialEq for Poll

Auto Trait Implementations§

§

impl Freeze for Poll
where T: Freeze,

§

impl RefUnwindSafe for Poll
where T: RefUnwindSafe,

§

impl Send for Poll
where T: Send,

§

impl Sync for Poll
where T: Sync,

§

impl Unpin for Poll
where T: Unpin,

§

impl UnwindSafe for Poll
where T: UnwindSafe,

Blanket Implementations§

Source§

impl Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl Borrow for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl BorrowMut for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dest. Read more
Source§

impl From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl From for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl Into for T
where U: From,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From for U chooses to do.

Source§

impl ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl TryFrom for T
where U: Into,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> ResultTryFrom>::Error>

Performs the conversion.
Source§

impl TryInto for T
where U: TryFrom,

Source§

type Error = TryFrom>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> ResultTryFrom>::Error>

Performs the conversion.