pub struct PropertyMetrics {
pub generated_artifacts: usize,
pub failed_generated_tests: usize,
pub no_panic_properties: usize,
pub deterministic_properties: usize,
pub invariant_properties: usize,
pub strength_score_percent: Option<u8>,
}Fields§
§generated_artifacts: usize§failed_generated_tests: usize§no_panic_properties: usize§deterministic_properties: usize§invariant_properties: usize§strength_score_percent: Option<u8>Trait Implementations§
Source§impl Clone for PropertyMetrics
impl Clone for PropertyMetrics
Source§fn clone(&self) -> PropertyMetrics
fn clone(&self) -> PropertyMetrics
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 PropertyMetrics
impl Debug for PropertyMetrics
Source§impl Default for PropertyMetrics
impl Default for PropertyMetrics
Source§fn default() -> PropertyMetrics
fn default() -> PropertyMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyMetrics
impl<'de> Deserialize<'de> for PropertyMetrics
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 PropertyMetrics
impl PartialEq for PropertyMetrics
Source§fn eq(&self, other: &PropertyMetrics) -> bool
fn eq(&self, other: &PropertyMetrics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyMetrics
impl Serialize for PropertyMetrics
impl Eq for PropertyMetrics
impl StructuralPartialEq for PropertyMetrics
Auto Trait Implementations§
impl Freeze for PropertyMetrics
impl RefUnwindSafe for PropertyMetrics
impl Send for PropertyMetrics
impl Sync for PropertyMetrics
impl Unpin for PropertyMetrics
impl UnsafeUnpin for PropertyMetrics
impl UnwindSafe for PropertyMetrics
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