Crate fastexcel

Crate fastexcel 

Source

Structs§

ColumnInfo
Metadata about a single column in a sheet.
ExcelReader
Represents an open Excel file and allows to access its sheets and tables.
ExcelSheet
A single sheet in an Excel file.
ExcelTable
A single table in an Excel file.
FastExcelColumn
A column in a sheet or table. A wrapper around a FastExcelSeries and a name.
LoadSheetOrTableOptions
Options for loading a sheet or table.

Enums§

ColumnNameFrom
How the column name was determined
DType
A column or a cell’s data type.
DTypeCoercion
Whether data types should be coerced or not.
DTypeFrom
How the data type was determined.
DTypes
Provided data types.
FastExcelSeries
A container for a typed vector of values. Used to represent a column of data in an Excel sheet. These should only be used when you need to work on the raw data. Otherwise, you should use a FastExcelColumn.
IdxOrName
A column index or name.
SelectedColumns
SheetVisible
Visibility of a sheet.
SkipRows
How rows should be skipped.

Functions§

read_excel
Reads an excel file and returns an object allowing to access its sheets, tables, and a bit of metadata. This is a wrapper around ExcelReader::try_from_path.