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]

[src]

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

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

[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> StdError for IntoInnerError<W>
[src]

[src]

A short description of the error. Read more

[src]

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

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

[src]

Formats the value using the given formatter. Read more

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

[src]

Formats the value using the given formatter.