pub struct PerTestingCriteriaResult {
pub failed: i64,
pub passed: i64,
pub testing_criteria: String,
}Fields§
§failed: i64Number of tests failed for this criteria.
passed: i64Number of tests passed for this criteria.
testing_criteria: StringA description of the testing criteria.
Trait Implementations§
Source§impl Clone for PerTestingCriteriaResult
impl Clone for PerTestingCriteriaResult
Source§fn clone(&self) -> PerTestingCriteriaResult
fn clone(&self) -> PerTestingCriteriaResult
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 PerTestingCriteriaResult
impl Debug for PerTestingCriteriaResult
Source§impl<'de> Deserialize<'de> for PerTestingCriteriaResult
impl<'de> Deserialize<'de> for PerTestingCriteriaResult
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 PerTestingCriteriaResult
impl RefUnwindSafe for PerTestingCriteriaResult
impl Send for PerTestingCriteriaResult
impl Sync for PerTestingCriteriaResult
impl Unpin for PerTestingCriteriaResult
impl UnsafeUnpin for PerTestingCriteriaResult
impl UnwindSafe for PerTestingCriteriaResult
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