#[repr(C)]pub struct SortState {
pub ss: ScanState,
pub randomAccess: bool,
pub bounded: bool,
pub bound: int64,
pub sort_Done: bool,
pub bounded_Done: bool,
pub bound_Done: int64,
pub tuplesortstate: *mut c_void,
pub am_worker: bool,
pub shared_info: *mut SharedSortInfo,
}
Fields§
§ss: ScanState
§randomAccess: bool
§bounded: bool
§bound: int64
§sort_Done: bool
§bounded_Done: bool
§bound_Done: int64
§tuplesortstate: *mut c_void
§am_worker: bool
Trait Implementations§
impl Copy for SortState
Auto Trait Implementations§
impl Freeze for SortState
impl RefUnwindSafe for SortState
impl !Send for SortState
impl !Sync for SortState
impl Unpin for SortState
impl UnwindSafe for SortState
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