@@ -16,8 +16,9 @@ pub use data::{FastExcelColumn, FastExcelSeries};
1616use error:: ErrorContext ;
1717pub use error:: { FastExcelError , FastExcelErrorKind , FastExcelResult } ;
1818pub use types:: {
19- ColumnInfo , ColumnNameFrom , DType , DTypeCoercion , DTypeFrom , DTypes , ExcelReader , ExcelSheet ,
20- ExcelTable , IdxOrName , LoadSheetOrTableOptions , SelectedColumns , SheetVisible , SkipRows ,
19+ ColumnInfo , ColumnNameFrom , DType , DTypeCoercion , DTypeFrom , DTypes , DefinedName , ExcelReader ,
20+ ExcelSheet , ExcelTable , IdxOrName , LoadSheetOrTableOptions , SelectedColumns , SheetVisible ,
21+ SkipRows ,
2122} ;
2223
2324/// Reads an excel file and returns an object allowing to access its sheets, tables, and a bit of metadata.
@@ -72,6 +73,7 @@ fn _fastexcel(m: &Bound<'_, PyModule>) -> PyResult<()> {
7273 m. add_function ( wrap_pyfunction ! ( py_read_excel, m) ?) ?;
7374 m. add_class :: < ColumnInfo > ( ) ?;
7475 m. add_class :: < ColumnInfoNoDtype > ( ) ?;
76+ m. add_class :: < DefinedName > ( ) ?;
7577 m. add_class :: < CellError > ( ) ?;
7678 m. add_class :: < CellErrors > ( ) ?;
7779 m. add_class :: < ExcelSheet > ( ) ?;
0 commit comments