[][src]Struct crabsformer::LoadError

pub struct LoadError { /* fields omitted */ }

An error which can be returned when loading numeric vector or matrix from a file.

Potential causes

Among other causes, LoadError can be thrown because of loaded file is not exists.

Methods

impl LoadError[src]

pub fn new(kind: LoadErrorKind, message: String) -> LoadError[src]

Creates a new LoadError from a known kind of error as well as an error message.

pub fn kind(&self) -> &LoadErrorKind[src]

Outputs the detailed cause of loading file failing.

Trait Implementations

impl From<Error> for LoadError[src]

Convert io::Error to matrix::LoadError

impl From<Error> for LoadError[src]

Convert csv::Error to matrix::LoadError

impl Display for LoadError[src]

impl Debug for LoadError[src]

Auto Trait Implementations

impl Send for LoadError

impl Sync for LoadError

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.