Structs§
- Column
Info - Metadata about a single column in a sheet.
- Excel
Reader - Represents an open Excel file and allows to access its sheets and tables.
- Excel
Sheet - A single sheet in an Excel file.
- Excel
Table - A single table in an Excel file.
- Fast
Excel Column - A column in a sheet or table. A wrapper around a
FastExcelSeries
and a name. - Fast
Excel Error - A
fastexcel
error. - Load
Sheet OrTable Options - Options for loading a sheet or table.
Enums§
- Column
Name From - How the column name was determined
- DType
- A column or a cell’s data type.
- DType
Coercion - Whether data types should be coerced or not.
- DType
From - How the data type was determined.
- DTypes
- Provided data types.
- Fast
Excel Error Kind - The kind of a fastexcel error.
- Fast
Excel Series - 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
. - IdxOr
Name - A column index or name.
- Selected
Columns - Sheet
Visible - Visibility of a sheet.
- Skip
Rows - 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
.