[][src]Struct amadeus::par_stream::Cloned

#[must_use]pub struct Cloned<P, T, Input> { /* fields omitted */ }

Implementations

impl<P, T, Input> Cloned<P, T, Input>[src]

pub fn new(pipe: P) -> Cloned<P, T, Input>[src]

Constructs a new Cloned.

Trait Implementations

impl<'a, P, Input, T> DistributedPipe<&'a Input> for Cloned<P, T, Input> where
    P: DistributedPipe<&'a Input, Output = &'a T>,
    T: 'a + Clone
[src]

type Output = T

type Task = ClonedTask<<P as DistributedPipe<&'a Input>>::Task>

impl<'a, P, Input, T> ParallelPipe<&'a Input> for Cloned<P, T, Input> where
    P: ParallelPipe<&'a Input, Output = &'a T>,
    T: 'a + Clone
[src]

type Output = T

type Task = ClonedTask<<P as ParallelPipe<&'a Input>>::Task>

Auto Trait Implementations

impl<P, T, Input> RefUnwindSafe for Cloned<P, T, Input> where
    P: RefUnwindSafe

impl<P, T, Input> Send for Cloned<P, T, Input> where
    P: Send

impl<P, T, Input> Sync for Cloned<P, T, Input> where
    P: Sync

impl<P, T, Input> Unpin for Cloned<P, T, Input> where
    P: Unpin

impl<P, T, Input> UnwindSafe for Cloned<P, T, Input> where
    P: 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> 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>,