[][src]Struct generator_extensions::Fuse

pub struct Fuse<'a, R, G: Generator<R>> { /* fields omitted */ }

The return type of Resumable::fuse.

Implementations

impl<'a, R, G: Generator<R, Return = ()>> Fuse<'a, R, G>[src]

#[must_use]pub fn new(pin: Pin<&'a mut G>) -> Self[src]

Creates a new Fuse generator from a pinned generator.

Consider using Resumable::fuse instead.

#[must_use]pub fn is_complete(&self) -> bool[src]

Returns true if the pinned generator has completed.

Notes

This method may return false even if the generator is complete if new was called with a generator which was already complete.

pub fn stop(&mut self)[src]

Forces the Fuse to repeatedly return GeneratorState::Complete(()), even if the underlying pinned generator is not yet complete.

The underlying pinned generator is neither made to complete nor dropped.

#[must_use]pub fn into_inner(self) -> Pin<&'a mut G>[src]

Retrieves the original pinned generator.

Trait Implementations

impl<'a, R, G: Generator<R, Return = ()>> Debug for Fuse<'a, R, G>[src]

impl<'a, R, G: Generator<R, Return = ()>> Generator<R> for Fuse<'a, R, G>[src]

type Yield = G::Yield

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

The type of value this generator yields. Read more

type Return = ()

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

The type of value this generator returns. Read more

Auto Trait Implementations

impl<'a, R, G> Send for Fuse<'a, R, G> where
    G: Send

impl<'a, R, G> Sync for Fuse<'a, R, G> where
    G: Sync

impl<'a, R, G> Unpin for Fuse<'a, R, G>

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.