Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-plan/src/plans/aexpr/function_expr/row_encode.rs
7889 views
1
#[derive(Clone, Debug, Hash, PartialEq)]
2
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
3
#[cfg_attr(feature = "dsl-schema", derive(schemars::JsonSchema))]
4
pub enum RowEncodingVariant {
5
Unordered,
6
Ordered {
7
descending: Option<Vec<bool>>,
8
nulls_last: Option<Vec<bool>>,
9
},
10
}
11
12