[][src]Struct generator_extensions::Unify

pub struct Unify<'a, R, T, G: Generator<R, Yield = T, Return = T>> { /* fields omitted */ }

The return type of Resumable::unify.

Implementations

impl<'a, R, T, G: Generator<R, Yield = T, Return = T>> Unify<'a, R, T, G>[src]

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

Creates a new Unify generator from a pinned generator.

Consider using Resumable::unify instead.

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

Retrieves the original pinned generator.

Trait Implementations

impl<'a, R, T, G: Generator<R, Yield = T, Return = T>> Debug for Unify<'a, R, T, G>[src]

impl<'a, R, T, G: Generator<R, Yield = T, Return = T>> Generator<R> for Unify<'a, R, T, G>[src]

type Yield = T

🔬 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, T, G> Send for Unify<'a, R, T, G> where
    G: Send

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

impl<'a, R, T, G> Unpin for Unify<'a, R, T, 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.