pub struct NumericSorterBuilder { /* private fields */ }Expand description
A builder-pattern type to construct NumericSorter objects.
Implementations§
Source§impl NumericSorterBuilder
impl NumericSorterBuilder
Sourcepub fn expression(self, expression: impl AsRef<Expression>) -> Self
pub fn expression(self, expression: impl AsRef<Expression>) -> Self
The expression to evaluate on items to get a number to compare with.
Sourcepub fn sort_order(self, sort_order: SortType) -> Self
pub fn sort_order(self, sort_order: SortType) -> Self
Whether the sorter will sort smaller numbers first.
Sourcepub fn build(self) -> NumericSorter
pub fn build(self) -> NumericSorter
Build the NumericSorter.