Struct rive_models::stats::LatencyStats
source · pub struct LatencyStats {
pub ops: i64,
pub latency: i64,
pub histogram: Vec<LatencyHistogramEntry>,
}Expand description
Collection latency stats
Fields§
§ops: i64Total operations
latency: i64Timestamp at which data keeping begun
histogram: Vec<LatencyHistogramEntry>Histogram representation of latency data
Trait Implementations§
source§impl Clone for LatencyStats
impl Clone for LatencyStats
source§fn clone(&self) -> LatencyStats
fn clone(&self) -> LatencyStats
Returns a copy 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 LatencyStats
impl Debug for LatencyStats
source§impl<'de> Deserialize<'de> for LatencyStats
impl<'de> Deserialize<'de> for LatencyStats
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 RefUnwindSafe for LatencyStats
impl Send for LatencyStats
impl Sync for LatencyStats
impl Unpin for LatencyStats
impl UnwindSafe for LatencyStats
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