pub struct QuerySummary {
pub query_type: String,
pub candidate_partitions: u64,
pub pruned_by_time: u64,
pub pruned_by_kind: u64,
pub scanned_partitions: u64,
pub scanned_rows: u64,
pub returned_rows: u64,
pub latency_ms: f64,
}Fields§
§query_type: String§candidate_partitions: u64§pruned_by_time: u64§pruned_by_kind: u64§scanned_partitions: u64§scanned_rows: u64§returned_rows: u64§latency_ms: f64Trait Implementations§
Source§impl Clone for QuerySummary
impl Clone for QuerySummary
Source§fn clone(&self) -> QuerySummary
fn clone(&self) -> QuerySummary
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 QuerySummary
impl Debug for QuerySummary
Source§impl Default for QuerySummary
impl Default for QuerySummary
Source§fn default() -> QuerySummary
fn default() -> QuerySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QuerySummary
impl<'de> Deserialize<'de> for QuerySummary
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 QuerySummary
impl RefUnwindSafe for QuerySummary
impl Send for QuerySummary
impl Sync for QuerySummary
impl Unpin for QuerySummary
impl UnsafeUnpin for QuerySummary
impl UnwindSafe for QuerySummary
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