Struct csv::IntoInnerError [−][src]
pub struct IntoInnerError<W> { /* fields omitted */ }Expand description
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.
Implementations
Returns the error which caused the call to into_inner to fail.
This error was returned when attempting to flush the internal buffer.
Returns the underlying writer which generated the error.
The returned value can be used for error recovery, such as re-inspecting the buffer.