pub struct SortRowsArgs {
pub span: SpanKey,
pub keys: Vec<(u64, bool)>,
pub sort_key: SortKey,
pub select: bool,
pub emit: bool,
pub undo: bool,
pub save_selection: bool,
}Fields§
§span: SpanKey§keys: Vec<(u64, bool)>§sort_key: SortKey§select: bool§emit: bool§undo: bool§save_selection: boolTrait Implementations§
Source§impl Clone for SortRowsArgs
impl Clone for SortRowsArgs
Source§fn clone(&self) -> SortRowsArgs
fn clone(&self) -> SortRowsArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SortRowsArgs
impl Debug for SortRowsArgs
Source§impl Default for SortRowsArgs
impl Default for SortRowsArgs
Source§impl PartialEq for SortRowsArgs
impl PartialEq for SortRowsArgs
Source§fn eq(&self, other: &SortRowsArgs) -> bool
fn eq(&self, other: &SortRowsArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SortRowsArgs
Auto Trait Implementations§
impl Freeze for SortRowsArgs
impl RefUnwindSafe for SortRowsArgs
impl Send for SortRowsArgs
impl Sync for SortRowsArgs
impl Unpin for SortRowsArgs
impl UnsafeUnpin for SortRowsArgs
impl UnwindSafe for SortRowsArgs
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