pub struct StringSorterBuilder { /* private fields */ }Expand description
A builder-pattern type to construct StringSorter objects.
Implementations§
Source§impl StringSorterBuilder
impl StringSorterBuilder
pub fn collation(self, collation: Collation) -> Self
pub fn expression(self, expression: impl AsRef<Expression>) -> Self
pub fn ignore_case(self, ignore_case: bool) -> Self
Sourcepub fn build(self) -> StringSorter
pub fn build(self) -> StringSorter
Build the StringSorter.
Auto Trait Implementations§
impl Freeze for StringSorterBuilder
impl RefUnwindSafe for StringSorterBuilder
impl !Send for StringSorterBuilder
impl !Sync for StringSorterBuilder
impl Unpin for StringSorterBuilder
impl UnwindSafe for StringSorterBuilder
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