pub struct SmokeCheckResult {
pub name: String,
pub passed: bool,
pub detail: String,
pub duration: Duration,
}Expand description
Result of a single smoke check with timing.
Fields§
§name: StringHuman-readable name of the check.
passed: boolWhether the check passed.
detail: StringFailure detail (empty when passed).
duration: DurationWall-clock duration of this check.
Trait Implementations§
Source§impl Clone for SmokeCheckResult
impl Clone for SmokeCheckResult
Source§fn clone(&self) -> SmokeCheckResult
fn clone(&self) -> SmokeCheckResult
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 SmokeCheckResult
impl RefUnwindSafe for SmokeCheckResult
impl Send for SmokeCheckResult
impl Sync for SmokeCheckResult
impl Unpin for SmokeCheckResult
impl UnsafeUnpin for SmokeCheckResult
impl UnwindSafe for SmokeCheckResult
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