pub struct RuleScoreDistribution {
pub samples: u64,
pub minimum: f64,
pub maximum: f64,
pub mean: f64,
pub near_threshold: u64,
}Fields§
§samples: u64§minimum: f64§maximum: f64§mean: f64§near_threshold: u64Trait Implementations§
Source§impl Clone for RuleScoreDistribution
impl Clone for RuleScoreDistribution
Source§fn clone(&self) -> RuleScoreDistribution
fn clone(&self) -> RuleScoreDistribution
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 RuleScoreDistribution
impl Debug for RuleScoreDistribution
Source§impl<'de> Deserialize<'de> for RuleScoreDistribution
impl<'de> Deserialize<'de> for RuleScoreDistribution
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 RuleScoreDistribution
impl PartialEq for RuleScoreDistribution
Source§impl Serialize for RuleScoreDistribution
impl Serialize for RuleScoreDistribution
impl StructuralPartialEq for RuleScoreDistribution
Auto Trait Implementations§
impl Freeze for RuleScoreDistribution
impl RefUnwindSafe for RuleScoreDistribution
impl Send for RuleScoreDistribution
impl Sync for RuleScoreDistribution
impl Unpin for RuleScoreDistribution
impl UnsafeUnpin for RuleScoreDistribution
impl UnwindSafe for RuleScoreDistribution
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