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

record: u64

The record number (starting at 1).

field: u64

The field number (starting at 1).

err: T

The error.

Trait Implementations

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

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

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

fn clone(&self) -> LocatableError<T>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

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

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.