pub struct WorkloadHistory {
pub range_count: u64,
pub knn_count: u64,
pub join_count: u64,
pub range_hits: u64,
pub knn_hits: u64,
pub join_hits: u64,
pub total_selectivity: f64,
pub selectivity_count: u64,
}Expand description
Snapshot of the query workload history.
Fields§
§range_count: u64§knn_count: u64§join_count: u64§range_hits: u64§knn_hits: u64§join_hits: u64§total_selectivity: f64§selectivity_count: u64Implementations§
Trait Implementations§
Source§impl Clone for WorkloadHistory
impl Clone for WorkloadHistory
Source§fn clone(&self) -> WorkloadHistory
fn clone(&self) -> WorkloadHistory
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 moreAuto Trait Implementations§
impl Freeze for WorkloadHistory
impl RefUnwindSafe for WorkloadHistory
impl Send for WorkloadHistory
impl Sync for WorkloadHistory
impl Unpin for WorkloadHistory
impl UnsafeUnpin for WorkloadHistory
impl UnwindSafe for WorkloadHistory
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