Struct csv::LocatableError [] [src]

pub struct LocatableError<T> {
    pub record: u64,
    pub field: u64,
    pub err: T,
}

An error tagged with a location at which it occurred.

Fields

The record number (starting at 1).

The field number (starting at 1).

The error.

Trait Implementations

impl<T: Clone> Clone for LocatableError<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for LocatableError<T>
[src]

impl<T: Debug> Debug for LocatableError<T>
[src]

Formats the value using the given formatter.

impl<T: Display> Display for LocatableError<T>
[src]

Formats the value using the given formatter.