pub struct AuditCheck {
pub name: &'static str,
pub passed: bool,
pub score: f64,
pub details: &'static str,
}Expand description
Individual audit check result.
Fields§
§name: &'static strName of the check
passed: boolWhether the check passed
score: f64Score for this check (0.0 to 1.0)
details: &'static strDetails about the check
Trait Implementations§
Source§impl Clone for AuditCheck
impl Clone for AuditCheck
Source§fn clone(&self) -> AuditCheck
fn clone(&self) -> AuditCheck
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 AuditCheck
impl RefUnwindSafe for AuditCheck
impl Send for AuditCheck
impl Sync for AuditCheck
impl Unpin for AuditCheck
impl UnwindSafe for AuditCheck
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