pub struct ChunkStatRow {
pub total: usize,
pub found: usize,
pub missing: usize,
pub elapsed_p50_ms: Option<u64>,
pub elapsed_p95_ms: Option<u64>,
pub elapsed_max_ms: Option<u64>,
}Fields§
§total: usize§found: usize§missing: usize§elapsed_p50_ms: Option<u64>Latency percentiles in ms, computed over chunks where
found == true. Absent when no chunk was found.
elapsed_p95_ms: Option<u64>§elapsed_max_ms: Option<u64>Trait Implementations§
Source§impl Clone for ChunkStatRow
impl Clone for ChunkStatRow
Source§fn clone(&self) -> ChunkStatRow
fn clone(&self) -> ChunkStatRow
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 moreSource§impl Debug for ChunkStatRow
impl Debug for ChunkStatRow
Source§impl<'de> Deserialize<'de> for ChunkStatRow
impl<'de> Deserialize<'de> for ChunkStatRow
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 ChunkStatRow
impl RefUnwindSafe for ChunkStatRow
impl Send for ChunkStatRow
impl Sync for ChunkStatRow
impl Unpin for ChunkStatRow
impl UnsafeUnpin for ChunkStatRow
impl UnwindSafe for ChunkStatRow
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