pub struct ExternalDurationStats {
pub min_us: u64,
pub max_us: u64,
pub mean_us: u64,
pub median_us: u64,
pub p95_us: u64,
pub p99_us: u64,
pub count: u64,
}Expand description
Duration statistics reported by external frameworks in the EBP protocol.
Fields§
§min_us: u64Minimum overhead in microseconds.
max_us: u64Maximum overhead in microseconds.
mean_us: u64Mean overhead in microseconds.
median_us: u64Median overhead in microseconds.
p95_us: u6495th percentile overhead in microseconds.
p99_us: u6499th percentile overhead in microseconds.
count: u64Number of measurements.
Trait Implementations§
Source§impl Clone for ExternalDurationStats
impl Clone for ExternalDurationStats
Source§fn clone(&self) -> ExternalDurationStats
fn clone(&self) -> ExternalDurationStats
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 ExternalDurationStats
impl Debug for ExternalDurationStats
Source§impl<'de> Deserialize<'de> for ExternalDurationStats
impl<'de> Deserialize<'de> for ExternalDurationStats
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
Source§impl PartialEq for ExternalDurationStats
impl PartialEq for ExternalDurationStats
Source§fn eq(&self, other: &ExternalDurationStats) -> bool
fn eq(&self, other: &ExternalDurationStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExternalDurationStats
impl Serialize for ExternalDurationStats
impl StructuralPartialEq for ExternalDurationStats
Auto Trait Implementations§
impl Freeze for ExternalDurationStats
impl RefUnwindSafe for ExternalDurationStats
impl Send for ExternalDurationStats
impl Sync for ExternalDurationStats
impl Unpin for ExternalDurationStats
impl UnsafeUnpin for ExternalDurationStats
impl UnwindSafe for ExternalDurationStats
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