[][src]Struct amadeus::source::IntoStream

pub struct IntoStream<I, U>(_, _);

Implementations

impl<I, U> IntoStream<I, U>[src]

pub fn new(f0: I) -> Self[src]

Constructs a new IntoStream.

Trait Implementations

impl<I, T, E, U> DistributedStream for IntoStream<I, U> where
    I: DistributedStream<Item = Result<T, E>>,
    T: Into<U>,
    U: 'static, 
[src]

type Item = Result<U, E>

type Task = IntoTask<I::Task, U>

impl<I, T, E, U> Iterator for IntoStream<I, U> where
    I: Iterator<Item = Result<T, E>>,
    T: Into<U>, 
[src]

type Item = Result<U, E>

The type of the elements being iterated over.

impl<I, T, E, U> ParallelStream for IntoStream<I, U> where
    I: ParallelStream<Item = Result<T, E>>,
    T: Into<U>,
    U: 'static, 
[src]

type Item = Result<U, E>

type Task = IntoTask<I::Task, U>

Auto Trait Implementations

impl<I, U> RefUnwindSafe for IntoStream<I, U> where
    I: RefUnwindSafe

impl<I, U> Send for IntoStream<I, U> where
    I: Send

impl<I, U> Sync for IntoStream<I, U> where
    I: Sync

impl<I, U> Unpin for IntoStream<I, U> where
    I: Unpin

impl<I, U> UnwindSafe for IntoStream<I, U> where
    I: UnwindSafe

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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> IntoDistributedStream for T where
    T: DistributedStream
[src]

type DistStream = T

type Item = <T as DistributedStream>::Item

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> IntoParallelStream for T where
    T: ParallelStream
[src]

type ParStream = T

type Item = <T as ParallelStream>::Item

impl<I> IteratorExt for I where
    I: Iterator
[src]

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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> Type for T[src]

type Meta = Concrete

Type of metadata for type.

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,