sheet_to_raw_buffer_v2

Function sheet_to_raw_buffer_v2 

Source
pub fn sheet_to_raw_buffer_v2(
    ws: &WorksheetXml,
    sst: &SharedStringTable,
) -> Result<Vec<u8>>
Expand description

Serialize a worksheet’s cell data into a compact binary buffer using v2 format.

The v2 format inlines all string data with each cell, eliminating the global string table. This enables incremental row-by-row decoding without eagerly decoding all strings.