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

The record number (starting at 1).

field

The field number (starting at 1).

err

The error.

Trait Implementations

impl<T: Display> Display for LocatableError<T>

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

Derived Implementations

impl<T: Debug> Debug for LocatableError<T>

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

impl<T: Copy> Copy for LocatableError<T>

impl<T: Clone> Clone for LocatableError<T>

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

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