Struct csv::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]

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.

Trait Implementations

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

A short description of the error. Read more

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

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter.