[][src]Struct amadeus_core::util::DistParStream

#[repr(transparent)]pub struct DistParStream<S>(_);

Implementations

impl<S> DistParStream<S>[src]

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

Constructs a new DistParStream.

Trait Implementations

impl<S> ParallelStream for DistParStream<S> where
    S: DistributedStream
[src]

type Item = S::Item

type Task = S::Task

impl<S> PinnedDrop for DistParStream<S>[src]

impl<'pin, S> Unpin for DistParStream<S> where
    __DistParStream<'pin, S>: Unpin
[src]

impl<S> UnsafeUnpin for DistParStream<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for DistParStream<S> where
    S: RefUnwindSafe

impl<S> Send for DistParStream<S> where
    S: Send

impl<S> Sync for DistParStream<S> where
    S: Sync

impl<S> UnwindSafe for DistParStream<S> where
    S: 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> From<T> for T[src]

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

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

type ParStream = T

type Item = <T as ParallelStream>::Item

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<V, T> VZip<V> for T where
    V: MultiLane<T>,