pub struct CausalCheck {
pub name: String,
pub passed: bool,
pub details: String,
}Expand description
Result of a single validation check.
Fields§
§name: StringName of the check.
passed: boolWhether the check passed.
details: StringDetails about the check result.
Trait Implementations§
Source§impl Clone for CausalCheck
impl Clone for CausalCheck
Source§fn clone(&self) -> CausalCheck
fn clone(&self) -> CausalCheck
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 CausalCheck
impl RefUnwindSafe for CausalCheck
impl Send for CausalCheck
impl Sync for CausalCheck
impl Unpin for CausalCheck
impl UnwindSafe for CausalCheck
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