Available on crate feature
serde
only.Expand description
Centralized Polars serialization entry.
Currently provides two serialization scheme’s.
- Self-describing (and thus more forward compatible) activated with
FC: true
- Compact activated with
FC: false
Structs§
- Mainly used to enable compression when serializing the final outer value. For intermediate serialization steps, the function in the module should be used instead.
Functions§
- Potentially avoids copying memory compared to a naive
Vec::<u8>::deserialize
.