Struct snap::IntoInnerError [] [src]

pub struct IntoInnerError<W> {
    // some fields omitted
}

IntoInnerError occurs when consuming a Writer fails.

Consuming the Writer causes a flush to happen. If the flush fails, then this error is returned, which contains both the original Writer and the error that occurred.

The type parameter W is the unconsumed writer.

Methods

impl<W> IntoInnerError<W>
[src]

fn error(&self) -> &Error

Returns the error which caused the call to into_inner to fail.

This error was returned when attempting to flush the internal buffer.

fn into_inner(self) -> W

Returns the underlying writer which generated the error.

The returned value can be used for error recovery, such as re-inspecting the buffer.

Trait Implementations

impl<W: Any> Error for IntoInnerError<W>
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more

impl<W> Display for IntoInnerError<W>
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

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

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.