pub enum SortingFnSpec {
Auto,
BuiltIn(BuiltInSortingFn),
Named(Arc<str>),
}Variants§
Auto
TanStack sortingFn: 'auto'.
BuiltIn(BuiltInSortingFn)
TanStack built-in sorting fn key.
Named(Arc<str>)
TanStack sortingFn: <string> resolved via options.sortingFns[key] ?? builtIn[key].
Trait Implementations§
Source§impl Clone for SortingFnSpec
impl Clone for SortingFnSpec
Source§fn clone(&self) -> SortingFnSpec
fn clone(&self) -> SortingFnSpec
Returns a duplicate 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 SortingFnSpec
impl Debug for SortingFnSpec
Source§impl Hash for SortingFnSpec
impl Hash for SortingFnSpec
Source§impl PartialEq for SortingFnSpec
impl PartialEq for SortingFnSpec
impl Eq for SortingFnSpec
impl StructuralPartialEq for SortingFnSpec
Auto Trait Implementations§
impl Freeze for SortingFnSpec
impl RefUnwindSafe for SortingFnSpec
impl Send for SortingFnSpec
impl Sync for SortingFnSpec
impl Unpin for SortingFnSpec
impl UnsafeUnpin for SortingFnSpec
impl UnwindSafe for SortingFnSpec
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