#[non_exhaustive]pub struct AggregationSortConfiguration { /* private fields */ }
Expand description
The configuration options to sort aggregated values.
Implementations§
source§impl AggregationSortConfiguration
impl AggregationSortConfiguration
sourcepub fn column(&self) -> Option<&ColumnIdentifier>
pub fn column(&self) -> Option<&ColumnIdentifier>
The column that determines the sort order of aggregated values.
sourcepub fn sort_direction(&self) -> Option<&SortDirection>
pub fn sort_direction(&self) -> Option<&SortDirection>
The sort direction of values.
-
ASC
: Sort in ascending order. -
DESC
: Sort in descending order.
sourcepub fn aggregation_function(&self) -> Option<&AggregationFunction>
pub fn aggregation_function(&self) -> Option<&AggregationFunction>
The function that aggregates the values in Column
.
source§impl AggregationSortConfiguration
impl AggregationSortConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AggregationSortConfiguration
.
Trait Implementations§
source§impl Clone for AggregationSortConfiguration
impl Clone for AggregationSortConfiguration
source§fn clone(&self) -> AggregationSortConfiguration
fn clone(&self) -> AggregationSortConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AggregationSortConfiguration
impl Debug for AggregationSortConfiguration
source§impl PartialEq<AggregationSortConfiguration> for AggregationSortConfiguration
impl PartialEq<AggregationSortConfiguration> for AggregationSortConfiguration
source§fn eq(&self, other: &AggregationSortConfiguration) -> bool
fn eq(&self, other: &AggregationSortConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.