Enum std::task::Poll

1.36.0 · source ·
pub enum Poll<T> {
    Ready(T),
    Pending,
}
Expand description

指示值是否可用,或者当前任务是否已安排为接收唤醒。

Variants§

§

Ready(T)

表示立即准备好值。

§

Pending

表示尚未准备好值。

当一个函数返回 Pending 时,该函数 必须 还必须确保计划在进度完成时唤醒当前任务。

Implementations§

source§

impl<T> Poll<T>

source

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

通过将函数应用于包含的值,Maps 从 Poll<T>Poll<U>

Examples

Poll<String> 转换为 Poll<usize>,消耗原始值:

let poll_some_string = Poll::Ready(String::from("Hello, World!"));
// `Poll::map` 会按值获取 self,消耗 `poll_some_string`
let poll_some_len = poll_some_string.map(|s| s.len());

assert_eq!(poll_some_len, Poll::Ready(13));
Run
const: 1.49.0 · source

pub const fn is_ready(&self) -> bool

如果轮询是 Poll::Ready 值,则返回 true

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

let x: Poll<u32> = Poll::Pending;
assert_eq!(x.is_ready(), false);
Run
const: 1.49.0 · source

pub const fn is_pending(&self) -> bool

如果轮询是 Pending 值,则返回 true

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

let x: Poll<u32> = Poll::Pending;
assert_eq!(x.is_pending(), true);
Run
source§

impl<T, E> Poll<Result<T, E>>

source

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

通过对包含的 Poll::Ready(Ok) 值应用一个函数,Maps 将 Poll<Result<T, E>> 映射为 Poll<Result<U, E>>,让所有其他变体保持不变。

该函数可用于组合两个函数的结果。

Examples
let res: Poll<Result<u8, _>> = Poll::Ready("12".parse());
let squared = res.map_ok(|n| n * n);
assert_eq!(squared, Poll::Ready(Ok(144)));
Run
source

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

通过对包含的 Poll::Ready(Err) 值应用一个函数,将 Poll::Ready<Result<T, E>> 映射为 Poll::Ready<Result<T, F>>,让所有其他变体保持不变。

此函数可用于在处理错误时传递成功的结果。

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

impl<T, E> Poll<Option<Result<T, E>>>

1.51.0 · source

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

通过对包含的 Poll::Ready(Some(Ok)) 值应用一个函数,将 Poll<Option<Result<T, E>>> 映射为 Poll<Option<Result<U, E>>>,让所有其他变体保持不变。

该函数可用于组合两个函数的结果。

Examples
let res: Poll<Option<Result<u8, _>>> = Poll::Ready(Some("12".parse()));
let squared = res.map_ok(|n| n * n);
assert_eq!(squared, Poll::Ready(Some(Ok(144))));
Run
1.51.0 · source

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

通过对包含的 Poll::Ready(Some(Err)) 值应用一个函数,将 Poll::Ready<Option<Result<T, E>>> 映射为 Poll::Ready<Option<Result<T, F>>>,让所有其他变体保持不变。

此函数可用于在处理错误时传递成功的结果。

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

Trait Implementations§

source§

impl<T> Clone for Poll<T>where T: Clone,

source§

fn clone(&self) -> Poll<T>

返回值的副本。 Read more
1.0.0 · source§

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

source 执行复制分配。 Read more
source§

impl<T> Debug for Poll<T>where T: Debug,

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl<T> From<T> for Poll<T>

source§

fn from(t: T) -> Poll<T>

将值移动到 Poll::Ready 中以生成 Poll<T>

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

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

source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
从兼容的 Residual 类型构造类型。 Read more
source§

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

source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
从兼容的 Residual 类型构造类型。 Read more
source§

impl<T> Hash for Poll<T>where T: Hash,

source§

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

将该值输入给定的 HasherRead more
1.3.0 · source§

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

将这种类型的切片送入给定的 Hasher 中。 Read more
source§

impl<T> Ord for Poll<T>where T: Ord,

source§

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

此方法返回 selfother 之间的 OrderingRead more
1.21.0 · source§

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

比较并返回两个值中的最大值。 Read more
1.21.0 · source§

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

比较并返回两个值中的最小值。 Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

将值限制在某个时间间隔内。 Read more
source§

impl<T> PartialEq<Poll<T>> for Poll<T>where T: PartialEq<T>,

source§

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

此方法测试 selfother 值是否相等,并由 == 使用。
1.0.0 · source§

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

此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
source§

impl<T> PartialOrd<Poll<T>> for Poll<T>where T: PartialOrd<T>,

source§

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

如果存在,则此方法返回 selfother 值之间的顺序。 Read more
1.0.0 · source§

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

此方法测试的内容少于 (对于 selfother),并且由 < 操作员使用。 Read more
1.0.0 · source§

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

此方法测试小于或等于 (对于 selfother),并且由 <= 运算符使用。 Read more
1.0.0 · source§

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

此方法测试大于 (对于 selfother),并且由 > 操作员使用。 Read more
1.0.0 · source§

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

此方法测试是否大于或等于 (对于 selfother),并且由 >= 运算符使用。 Read more
source§

impl<T, E> Try for Poll<Option<Result<T, E>>>

§

type Output = Poll<Option<T>>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
当不短路时,? 产生的值的类型。
§

type Residual = Result<Infallible, E>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
短路时作为 ? 的一部分传递给 FromResidual::from_residual 的值的类型。 Read more
source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
从它的 Output 类型构造类型。 Read more
source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
? 来决定操作符是应该生成一个值 (因为它返回了 ControlFlow::Continue),还是将一个值传播回调用者 (因为它返回了 ControlFlow::Break)。 Read more
source§

impl<T, E> Try for Poll<Result<T, E>>

§

type Output = Poll<T>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
当不短路时,? 产生的值的类型。
§

type Residual = Result<Infallible, E>

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
短路时作为 ? 的一部分传递给 FromResidual::from_residual 的值的类型。 Read more
source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
从它的 Output 类型构造类型。 Read more
source§

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

🔬This is a nightly-only experimental API. (try_trait_v2 #84277)
? 来决定操作符是应该生成一个值 (因为它返回了 ControlFlow::Continue),还是将一个值传播回调用者 (因为它返回了 ControlFlow::Break)。 Read more
source§

impl<T> Copy for Poll<T>where T: Copy,

source§

impl<T> Eq for Poll<T>where T: Eq,

source§

impl<T> StructuralEq for Poll<T>

source§

impl<T> StructuralPartialEq for Poll<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Poll<T>where T: RefUnwindSafe,

§

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

§

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

§

impl<T> Unpin for Poll<T>where T: Unpin,

§

impl<T> UnwindSafe for Poll<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

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

从拥有的值中借用。 Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

从输入类型转换为此类型。
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

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

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。