[][src]Struct csv::IntoInnerError

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]

pub 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.

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

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

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

fn description(&self) -> &str1.0.0[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>1.0.0[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Auto Trait Implementations

impl<W> Sync for IntoInnerError<W> where
    W: Sync

impl<W> Send for IntoInnerError<W> where
    W: Send

impl<W> Unpin for IntoInnerError<W> where
    W: Unpin

impl<W> !RefUnwindSafe for IntoInnerError<W>

impl<W> !UnwindSafe for IntoInnerError<W>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]