pub struct CriterionResult {
pub criterion: String,
pub status: String,
pub note: Option<String>,
}Expand description
Result of verifying an individual criterion
Fields§
§criterion: String§status: String§note: Option<String>Trait Implementations§
Source§impl Clone for CriterionResult
impl Clone for CriterionResult
Source§fn clone(&self) -> CriterionResult
fn clone(&self) -> CriterionResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CriterionResult
impl RefUnwindSafe for CriterionResult
impl Send for CriterionResult
impl Sync for CriterionResult
impl Unpin for CriterionResult
impl UnwindSafe for CriterionResult
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