[][src]Struct amadeus::par_stream::Chain

#[must_use]pub struct Chain<A, B> { /* fields omitted */ }

Implementations

impl<A, B> Chain<A, B>[src]

pub fn new(a: A, b: B) -> Chain<A, B>[src]

Constructs a new Chain.

Trait Implementations

impl<A, B> DistributedStream for Chain<A, B> where
    A: DistributedStream,
    B: DistributedStream<Item = <A as DistributedStream>::Item>, 
[src]

type Item = <A as DistributedStream>::Item

type Task = ChainTask<<A as DistributedStream>::Task, <B as DistributedStream>::Task>

impl<A, B> ParallelStream for Chain<A, B> where
    A: ParallelStream,
    B: ParallelStream<Item = <A as ParallelStream>::Item>, 
[src]

type Item = <A as ParallelStream>::Item

type Task = ChainTask<<A as ParallelStream>::Task, <B as ParallelStream>::Task>

impl<'pin, A, B> Unpin for Chain<A, B> where
    __Chain<'pin, A, B>: Unpin
[src]

impl<A, B> UnsafeUnpin for Chain<A, B>[src]

Auto Trait Implementations

impl<A, B> RefUnwindSafe for Chain<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for Chain<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Chain<A, B> where
    A: Sync,
    B: Sync

impl<A, B> UnwindSafe for Chain<A, B> where
    A: UnwindSafe,
    B: 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<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

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

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

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

type DistStream = T

type Item = <T as DistributedStream>::Item

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

type ParStream = T

type Item = <T as ParallelStream>::Item

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 where
    T: ?Sized
[src]

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

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