[][src]Struct futures::stream::ReuniteError

pub struct ReuniteError<T, Item>(pub SplitSink<T, Item>, pub SplitStream<T>);

Error indicating a SplitSink<S> and SplitStream<S> were not two halves of a Stream + Split, and thus could not be reunited.

Trait Implementations

impl<T, Item> Error for ReuniteError<T, Item> where
    T: Any
[src]

impl<T, Item> Display for ReuniteError<T, Item>[src]

impl<T, Item> Debug for ReuniteError<T, Item>[src]

Auto Trait Implementations

impl<T, Item> Send for ReuniteError<T, Item> where
    Item: Send,
    T: Send

impl<T, Item> Sync for ReuniteError<T, Item> where
    Item: Sync,
    T: Send

impl<T, Item> Unpin for ReuniteError<T, Item>

impl<T, Item> !UnwindSafe for ReuniteError<T, Item>

impl<T, Item> !RefUnwindSafe for ReuniteError<T, Item>

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]