pub struct SecurityReport {
pub security_score: u8,
pub entropy_quality: EntropyQuality,
pub nist_compliance: NistCompliance,
pub timing_analysis: TimingAnalysis,
pub issues: Vec<SecurityIssue>,
pub passed: bool,
}
Expand description
Security validation report
Fields§
§security_score: u8
§entropy_quality: EntropyQuality
§nist_compliance: NistCompliance
§timing_analysis: TimingAnalysis
§issues: Vec<SecurityIssue>
§passed: bool
Trait Implementations§
Source§impl Clone for SecurityReport
impl Clone for SecurityReport
Source§fn clone(&self) -> SecurityReport
fn clone(&self) -> SecurityReport
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 SecurityReport
impl RefUnwindSafe for SecurityReport
impl Send for SecurityReport
impl Sync for SecurityReport
impl Unpin for SecurityReport
impl UnwindSafe for SecurityReport
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