pub struct QueryProfile {
pub index_time_us: u64,
pub memtable_time_us: u64,
pub memtable_load_us: u64,
pub memtable_scan_us: u64,
pub memtable_size: usize,
pub merge_time_us: u64,
pub total_time_us: u64,
pub index_results: usize,
pub memtable_results: usize,
pub total_results: usize,
}Expand description
Query performance profile
Fields§
§index_time_us: u64§memtable_time_us: u64§memtable_load_us: u64§memtable_scan_us: u64§memtable_size: usize§merge_time_us: u64§total_time_us: u64§index_results: usize§memtable_results: usize§total_results: usizeTrait Implementations§
Source§impl Clone for QueryProfile
impl Clone for QueryProfile
Source§fn clone(&self) -> QueryProfile
fn clone(&self) -> QueryProfile
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 moreAuto Trait Implementations§
impl Freeze for QueryProfile
impl RefUnwindSafe for QueryProfile
impl Send for QueryProfile
impl Sync for QueryProfile
impl Unpin for QueryProfile
impl UnsafeUnpin for QueryProfile
impl UnwindSafe for QueryProfile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more