pub struct VerifyCheck {
pub name: String,
pub status: VerifyStatus,
pub detail: String,
}Expand description
A single verification check result.
Fields§
§name: String§status: VerifyStatus§detail: StringImplementations§
Trait Implementations§
Source§impl Clone for VerifyCheck
impl Clone for VerifyCheck
Source§fn clone(&self) -> VerifyCheck
fn clone(&self) -> VerifyCheck
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 VerifyCheck
impl RefUnwindSafe for VerifyCheck
impl Send for VerifyCheck
impl Sync for VerifyCheck
impl Unpin for VerifyCheck
impl UnsafeUnpin for VerifyCheck
impl UnwindSafe for VerifyCheck
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