Struct destream::en::MapStream[][src]

pub struct MapStream<E, K, V, S: Stream<Item = Result<(K, V), E>>> { /* fields omitted */ }

Disambiguates a map from a sequence when encoding a stream.

Trait Implementations

impl<'en, E: 'en, K: 'en, V: 'en, S: Stream<Item = Result<(K, V), E>> + 'en> From<S> for MapStream<E, K, V, S>[src]

impl<'en, Err: Display + 'en, K: IntoStream<'en> + 'en, V: IntoStream<'en> + 'en, S: Stream<Item = Result<(K, V), Err>> + Send + Unpin + 'en> IntoStream<'en> for MapStream<Err, K, V, S>[src]

Auto Trait Implementations

impl<E, K, V, S> RefUnwindSafe for MapStream<E, K, V, S> where
    S: RefUnwindSafe

impl<E, K, V, S> Send for MapStream<E, K, V, S> where
    S: Send

impl<E, K, V, S> Sync for MapStream<E, K, V, S> where
    S: Sync

impl<E, K, V, S> Unpin for MapStream<E, K, V, S> where
    S: Unpin

impl<E, K, V, S> UnwindSafe for MapStream<E, K, V, 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<!> for T[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.