pub struct MsortDescriptor {
pub batch: i32,
pub row_len: i32,
pub descending: bool,
pub element: ElementKind,
}Expand description
Descriptor for an msort op.
Fields§
§batch: i32Number of independent rows.
row_len: i32Length of each row. Trailblazer cap: ≤ 1024.
descending: booltrue = sort largest-first.
element: ElementKindValue element type.
Trait Implementations§
Source§impl Clone for MsortDescriptor
impl Clone for MsortDescriptor
Source§fn clone(&self) -> MsortDescriptor
fn clone(&self) -> MsortDescriptor
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 moreimpl Copy for MsortDescriptor
Auto Trait Implementations§
impl Freeze for MsortDescriptor
impl RefUnwindSafe for MsortDescriptor
impl Send for MsortDescriptor
impl Sync for MsortDescriptor
impl Unpin for MsortDescriptor
impl UnsafeUnpin for MsortDescriptor
impl UnwindSafe for MsortDescriptor
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