pub struct EntityBaseline {
pub entity: String,
pub metric: String,
pub mean: f64,
pub std_dev: f64,
pub samples: u64,
}Expand description
Statistical envelope for one (entity, metric) pair.
Fields§
§entity: String§metric: String§mean: f64§std_dev: f64§samples: u64Implementations§
Trait Implementations§
Source§impl Clone for EntityBaseline
impl Clone for EntityBaseline
Source§fn clone(&self) -> EntityBaseline
fn clone(&self) -> EntityBaseline
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 EntityBaseline
impl Debug for EntityBaseline
Source§impl<'de> Deserialize<'de> for EntityBaseline
impl<'de> Deserialize<'de> for EntityBaseline
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 EntityBaseline
impl RefUnwindSafe for EntityBaseline
impl Send for EntityBaseline
impl Sync for EntityBaseline
impl Unpin for EntityBaseline
impl UnsafeUnpin for EntityBaseline
impl UnwindSafe for EntityBaseline
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