[][src]Struct async_std::io::IntoInnerError

pub struct IntoInnerError<W>(_, _);

An error returned by into_inner which combines an error that happened while writing out the buffer, and the buffered writer object which may be used to recover from the condition.

Examples

use async_std::io::BufWriter;
use async_std::net::TcpStream;

let buf_writer = BufWriter::new(TcpStream::connect("127.0.0.1:34251").await?);

// unwrap the TcpStream and flush the buffer
let stream = match buf_writer.into_inner().await {
    Ok(s) => s,
    Err(e) => {
        // Here, e is an IntoInnerError
        panic!("An error occurred");
    }
};

Trait Implementations

impl<W: Debug> Debug for IntoInnerError<W>[src]

Auto Trait Implementations

impl<W> Send for IntoInnerError<W> where
    W: Send

impl<W> Sync for IntoInnerError<W> where
    W: Sync

impl<W> Unpin for IntoInnerError<W> where
    W: Unpin

impl<W> !UnwindSafe for IntoInnerError<W>

impl<W> !RefUnwindSafe for IntoInnerError<W>

Blanket Implementations

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

impl<T> From<T> for 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.

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]