Expand description
Forward-only streaming worksheet reader.
SheetStreamReader reads worksheet XML row-by-row using event-driven
parsing (quick_xml::Reader) without materializing the full DOM. This
enables processing large worksheets with bounded memory by reading rows
in batches.
Shared string indices are resolved through a reference to the workbook’s
SharedStringTable. Cell types (string, number, boolean, date, formula,
error, inline string) are handled according to the OOXML specification.
Structs§
- Owned
Sheet Stream Reader - Owning variant of
SheetStreamReaderfor use in FFI contexts where lifetime parameters are not supported (e.g., napi classes). - Sheet
Stream Reader - Forward-only streaming reader for worksheet XML.
- Stream
Row - A single row produced by the streaming reader.