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§
- Serialize
Options - 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§
- deserialize_
from_ reader - deserialize_
impl - deserialize_
map_ bytes - Potentially avoids copying memory compared to a naive
Vec::<u8>::deserialize
. - serialize_
into_ writer - serialize_
to_ bytes