pub struct CheckOutput {
pub passed: bool,
pub detail: Option<String>,
pub duration: Duration,
}Expand description
Output from a single check execution.
Fields§
§passed: bool§detail: Option<String>§duration: DurationImplementations§
Trait Implementations§
Source§impl Clone for CheckOutput
impl Clone for CheckOutput
Source§fn clone(&self) -> CheckOutput
fn clone(&self) -> CheckOutput
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 moreAuto Trait Implementations§
impl Freeze for CheckOutput
impl RefUnwindSafe for CheckOutput
impl Send for CheckOutput
impl Sync for CheckOutput
impl Unpin for CheckOutput
impl UnsafeUnpin for CheckOutput
impl UnwindSafe for CheckOutput
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