[][src]Struct parallel_stream::FromStream

pub struct FromStream<S> { /* fields omitted */ }

A parallel stream that was created from sequential stream.

This stream is created by the from_stream function. See it documentation for more.

Trait Implementations

impl<S: Clone> Clone for FromStream<S>[src]

impl<S: Debug> Debug for FromStream<S>[src]

impl<S: Stream + Send + Sync + Unpin + 'static> ParallelStream for FromStream<S> where
    S::Item: Send
[src]

type Item = S::Item

The type of items yielded by this stream.

impl<'__pin, S> Unpin for FromStream<S> where
    __Origin<'__pin, S>: Unpin
[src]

Auto Trait Implementations

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

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

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

impl<S> UnwindSafe for FromStream<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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.