pub struct TableColumnSortSpec {
pub column_user_id: u32,
pub column_index: i16,
pub sort_order: i16,
pub sort_direction: SortDirection,
}Expand description
One column sort spec.
Fields§
§column_user_id: u32§column_index: i16§sort_order: i16§sort_direction: SortDirectionTrait Implementations§
Source§impl Clone for TableColumnSortSpec
impl Clone for TableColumnSortSpec
Source§fn clone(&self) -> TableColumnSortSpec
fn clone(&self) -> TableColumnSortSpec
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 TableColumnSortSpec
impl Debug for TableColumnSortSpec
impl Copy for TableColumnSortSpec
Auto Trait Implementations§
impl Freeze for TableColumnSortSpec
impl RefUnwindSafe for TableColumnSortSpec
impl Send for TableColumnSortSpec
impl Sync for TableColumnSortSpec
impl Unpin for TableColumnSortSpec
impl UnwindSafe for TableColumnSortSpec
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