pub struct Check {
pub id: &'static str,
pub title: String,
pub outcome: Outcome,
pub detail: String,
pub spec: &'static str,
}Available on crate feature
client only.Expand description
One thing that was checked, and what the peer did.
Fields§
§id: &'static strStable identifier, so a report can be diffed between runs.
title: StringWhat was checked, in one line.
outcome: OutcomeHow it came out.
detail: StringWhat the peer actually did.
spec: &'static strThe specification anchor this check comes from.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Check
impl RefUnwindSafe for Check
impl Send for Check
impl Sync for Check
impl Unpin for Check
impl UnsafeUnpin for Check
impl UnwindSafe for Check
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