Struct snap::IntoInnerError
[−]
[src]
pub struct IntoInnerError<W> { /* 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[src]
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[src]
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[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
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[src]
Formats the value using the given formatter. Read more