Enum core::ops::GeneratorState

source ·
pub enum GeneratorState<Y, R> {
    Yielded(Y),
    Complete(R),
}
🔬This is a nightly-only experimental API. (generator_trait #43122)
Expand description

恢复生成器的结果。

该枚举从 Generator::resume 方法返回,并指示生成器的可能返回值。 当前,这对应于悬挂点 (Yielded) 或终止点 (Complete)。

Variants§

§

Yielded(Y)

🔬This is a nightly-only experimental API. (generator_trait #43122)

生成器挂起了一个值。

此状态表明生成器已被挂起,并且通常对应于 yield 语句。 该变体中提供的值对应于传递给 yield 的表达式,并允许生成器在每次产生时提供一个值。

§

Complete(R)

🔬This is a nightly-only experimental API. (generator_trait #43122)

生成器完成并返回一个值。

此状态表明生成器已使用提供的值完成了执行。 生成器返回 Complete 后,再次调用 resume 将被视为程序员错误。

Trait Implementations§

source§

impl<Y: Clone, R: Clone> Clone for GeneratorState<Y, R>

source§

fn clone(&self) -> GeneratorState<Y, R>

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

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

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

impl<Y: Debug, R: Debug> Debug for GeneratorState<Y, R>

source§

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

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

impl<Y: Hash, R: Hash> Hash for GeneratorState<Y, R>

source§

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

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

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

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

impl<Y: Ord, R: Ord> Ord for GeneratorState<Y, R>

source§

fn cmp(&self, other: &GeneratorState<Y, R>) -> 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,

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

impl<Y: PartialEq, R: PartialEq> PartialEq<GeneratorState<Y, R>> for GeneratorState<Y, R>

source§

fn eq(&self, other: &GeneratorState<Y, R>) -> bool

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

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

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

impl<Y: PartialOrd, R: PartialOrd> PartialOrd<GeneratorState<Y, R>> for GeneratorState<Y, R>

source§

fn partial_cmp(&self, other: &GeneratorState<Y, R>) -> 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<Y: Copy, R: Copy> Copy for GeneratorState<Y, R>

source§

impl<Y: Eq, R: Eq> Eq for GeneratorState<Y, R>

source§

impl<Y, R> StructuralEq for GeneratorState<Y, R>

source§

impl<Y, R> StructuralPartialEq for GeneratorState<Y, R>

Auto Trait Implementations§

§

impl<Y, R> RefUnwindSafe for GeneratorState<Y, R>where R: RefUnwindSafe, Y: RefUnwindSafe,

§

impl<Y, R> Send for GeneratorState<Y, R>where R: Send, Y: Send,

§

impl<Y, R> Sync for GeneratorState<Y, R>where R: Sync, Y: Sync,

§

impl<Y, R> Unpin for GeneratorState<Y, R>where R: Unpin, Y: Unpin,

§

impl<Y, R> UnwindSafe for GeneratorState<Y, R>where R: UnwindSafe, Y: 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<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, 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>

执行转换。