[][src]Struct amadeus_core::into_par_stream::Never

pub struct Never(_);

Trait Implementations

impl<'de> Deserialize<'de> for Never[src]

impl DistributedStream for Never[src]

type Item = Self

type Task = Self

impl ParallelStream for Never[src]

type Item = Self

type Task = Self

impl Serialize for Never[src]

impl Stream for Never[src]

type Item = Self

Values yielded by the stream.

impl StreamTask for Never[src]

type Item = Self

type Async = Self

Auto Trait Implementations

impl RefUnwindSafe for Never

impl Send for Never

impl Sync for Never

impl Unpin for Never

impl UnwindSafe for Never

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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]

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

type ParStream = T

type Item = <T as ParallelStream>::Item

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<S> StreamExt for S where
    S: Stream + ?Sized
[src]

impl<T> StreamExt for T where
    T: Stream + ?Sized
[src]

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>,