[][src]Enum gc_sequence::flatten_result::FlattenOk

#[must_use = "sequences do nothing unless stepped"]
pub enum FlattenOk<S, I> { First(S), Second(I), }

Variants

First(S)Second(I)

Methods

impl<S, I> FlattenOk<S, I>[src]

pub fn new(s: S) -> FlattenOk<S, I>[src]

Trait Implementations

impl<'gc, S, I, E, I2> Sequence<'gc> for FlattenOk<S, I> where
    S: Sequence<'gc, Output = Result<I, E>>,
    I: Sequence<'gc, Output = Result<I2, E>>, 
[src]

type Output = Result<I2, E>

impl<S, I> Drop for FlattenOk<S, I>[src]

impl<S, I> Collect for FlattenOk<S, I> where
    S: Collect,
    I: Collect
[src]

Auto Trait Implementations

impl<S, I> Send for FlattenOk<S, I> where
    I: Send,
    S: Send

impl<S, I> Sync for FlattenOk<S, I> where
    I: Sync,
    S: Sync

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]