pub struct NumericSorterBuilder { /* private fields */ }Expand description
A builder-pattern type to construct NumericSorter objects.
Implementations§
Source§impl NumericSorterBuilder
impl NumericSorterBuilder
pub fn expression(self, expression: impl AsRef<Expression>) -> Self
pub fn sort_order(self, sort_order: SortType) -> Self
Sourcepub fn build(self) -> NumericSorter
pub fn build(self) -> NumericSorter
Build the NumericSorter.
Auto Trait Implementations§
impl Freeze for NumericSorterBuilder
impl RefUnwindSafe for NumericSorterBuilder
impl !Send for NumericSorterBuilder
impl !Sync for NumericSorterBuilder
impl Unpin for NumericSorterBuilder
impl UnwindSafe for NumericSorterBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more