Enum calamine::Error[][src]

pub enum Error {
    Io(Error),
    Ods(OdsError),
    Xls(XlsError),
    Xlsb(XlsbError),
    Xlsx(XlsxError),
    Vba(VbaError),
    De(DeError),
    Msg(&'static str),
}

A struct to handle any error and a message

Variants

IO error

Ods specific error

xls specific error

xlsb specific error

xlsx specific error

vba specific error

Auto error cfb specific error

General error message

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl From<OdsError> for Error
[src]

Performs the conversion.

impl From<XlsError> for Error
[src]

Performs the conversion.

impl From<XlsbError> for Error
[src]

Performs the conversion.

impl From<XlsxError> for Error
[src]

Performs the conversion.

impl From<VbaError> for Error
[src]

Performs the conversion.

impl From<DeError> for Error
[src]

Performs the conversion.

impl From<&'static str> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error