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.
Constants§
Functions§
- deserialize_
dsl - Deserialize function customized for
DslPlan
, with stack overflow protection. - deserialize_
from_ reader - deserialize_
impl - deserialize_
map_ bytes - Potentially avoids copying memory compared to a naive
Vec::<u8>::deserialize
. - python_
object_ deserialize python
- python_
object_ serialize python
- serialize_
dsl - Serialize function customized for
DslPlan
, with stack overflow protection. - serialize_
into_ writer - serialize_
to_ bytes