pub struct CheckOutput {
pub success: bool,
pub checks: Vec<CheckItem>,
}Expand description
Check output.
Fields§
§success: boolAll checks passed.
checks: Vec<CheckItem>Per-check results.
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CheckOutput
impl Debug for CheckOutput
Auto 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