pub struct QueryPerformance {
pub cache_hit_ratio: Option<f64>,
pub cache_temperature: Option<String>,
pub server_total_ms: Option<u64>,
pub query_execution_ms: Option<u64>,
pub exhaustive_search_count: Option<u64>,
pub approx_namespace_size: Option<u64>,
}Fields§
§cache_hit_ratio: Option<f64>§cache_temperature: Option<String>§server_total_ms: Option<u64>§query_execution_ms: Option<u64>§exhaustive_search_count: Option<u64>§approx_namespace_size: Option<u64>Trait Implementations§
Source§impl Clone for QueryPerformance
impl Clone for QueryPerformance
Source§fn clone(&self) -> QueryPerformance
fn clone(&self) -> QueryPerformance
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 moreSource§impl Debug for QueryPerformance
impl Debug for QueryPerformance
Source§impl<'de> Deserialize<'de> for QueryPerformance
impl<'de> Deserialize<'de> for QueryPerformance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueryPerformance
impl RefUnwindSafe for QueryPerformance
impl Send for QueryPerformance
impl Sync for QueryPerformance
impl Unpin for QueryPerformance
impl UnwindSafe for QueryPerformance
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