[][src]Enum csvsc::col::BuildError

pub enum BuildError {
    ReNoMatch(RegexString),
    InvalidFormat,
    KeyError(String),
    Generic(String),
}

Clases de errores que se pueden generar al construir una columna para agregar a cada registro.

Variants

ReNoMatch(RegexString)

the regular expression provided does not match the target column

InvalidFormat

the given format for building the new column is not correct

KeyError(String)

One of the specfied sources for creating this column does not exist

Generic(String)

Everything else

Trait Implementations

impl Debug for BuildError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.