pub struct SecurityStats {
pub total_violations: u64,
pub stack_violations: u64,
pub guard_violations: u64,
pub cfi_violations: u64,
pub isolation_violations: u64,
pub memory_violations: u64,
pub resource_violations: u64,
pub crypto_violations: u64,
pub features_enabled: FeaturesEnabled,
}
Expand description
Security statistics.
Fields§
§total_violations: u64
§stack_violations: u64
§guard_violations: u64
§cfi_violations: u64
§isolation_violations: u64
§memory_violations: u64
§resource_violations: u64
§crypto_violations: u64
§features_enabled: FeaturesEnabled
Trait Implementations§
Source§impl Clone for SecurityStats
impl Clone for SecurityStats
Source§fn clone(&self) -> SecurityStats
fn clone(&self) -> SecurityStats
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 SecurityStats
impl RefUnwindSafe for SecurityStats
impl Send for SecurityStats
impl Sync for SecurityStats
impl Unpin for SecurityStats
impl UnwindSafe for SecurityStats
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