Struct std::io::IntoInnerError 1.0.0[−][src]
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 std::io::BufWriter; use std::net::TcpStream; let mut stream = BufWriter::new(TcpStream::connect("127.0.0.1:34254").unwrap()); // do stuff with the stream // we want to get our `TcpStream` back, so let's try: let stream = match stream.into_inner() { Ok(s) => s, Err(e) => { // Here, e is an IntoInnerError panic!("An error occurred"); } };Run
Methods
impl<W> IntoInnerError<W>
[src]
impl<W> IntoInnerError<W>
pub fn error(&self) -> &Error
[src]
pub fn error(&self) -> &Error
Returns the error which caused the call to into_inner()
to fail.
This error was returned when attempting to write the internal buffer.
Examples
use std::io::BufWriter; use std::net::TcpStream; let mut stream = BufWriter::new(TcpStream::connect("127.0.0.1:34254").unwrap()); // do stuff with the stream // we want to get our `TcpStream` back, so let's try: let stream = match stream.into_inner() { Ok(s) => s, Err(e) => { // Here, e is an IntoInnerError, let's log the inner error. // // We'll just 'log' to stdout for this example. println!("{}", e.error()); panic!("An unexpected error occurred."); } };Run
pub fn into_inner(self) -> W
[src]
pub fn into_inner(self) -> W
Returns the buffered writer instance which generated the error.
The returned object can be used for error recovery, such as re-inspecting the buffer.
Examples
use std::io::BufWriter; use std::net::TcpStream; let mut stream = BufWriter::new(TcpStream::connect("127.0.0.1:34254").unwrap()); // do stuff with the stream // we want to get our `TcpStream` back, so let's try: let stream = match stream.into_inner() { Ok(s) => s, Err(e) => { // Here, e is an IntoInnerError, let's re-examine the buffer: let buffer = e.into_inner(); // do stuff to try to recover // afterwards, let's just return the stream buffer.into_inner().unwrap() } };Run
Trait Implementations
impl<W: Debug> Debug for IntoInnerError<W>
[src]
impl<W: Debug> Debug for IntoInnerError<W>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<W> From<IntoInnerError<W>> for Error
[src]
impl<W> From<IntoInnerError<W>> for Error
fn from(iie: IntoInnerError<W>) -> Error
[src]
fn from(iie: IntoInnerError<W>) -> Error
Performs the conversion.
impl<W: Send + Debug> Error for IntoInnerError<W>
[src]
impl<W: Send + Debug> Error for IntoInnerError<W>
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl<W> Display for IntoInnerError<W>
[src]
impl<W> Display for IntoInnerError<W>
Auto Trait Implementations
impl<W> Send for IntoInnerError<W> where
W: Send,
impl<W> Send for IntoInnerError<W> where
W: Send,
impl<W> Sync for IntoInnerError<W> where
W: Sync,
impl<W> Sync for IntoInnerError<W> where
W: Sync,