Enum calamine::Sheets

source ·
pub enum Sheets {
    Xls(Xls<BufReader<File>>),
    Xlsx(Xlsx<BufReader<File>>),
    Xlsb(Xlsb<BufReader<File>>),
    Ods(Ods<BufReader<File>>),
}
Expand description

A wrapper over all sheets when the file type is not known at static time

Variants

Xls(Xls<BufReader<File>>)

Xls reader

Xlsx(Xlsx<BufReader<File>>)

Xlsx reader

Xlsb(Xlsb<BufReader<File>>)

Xlsb reader

Ods(Ods<BufReader<File>>)

Ods reader

Trait Implementations

Creates a new instance.

Gets VbaProject

Initialize

Read worksheet data in corresponding worksheet path

Read worksheet formula in corresponding worksheet path

Inner reader type
Error specific to file type
Get all sheet names of this workbook Read more
Get all defined names (Ranges names etc)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.