pub struct StackProtectionStats {
pub canaries_placed: usize,
pub violations_detected: usize,
pub guard_pages_allocated: usize,
pub protection_enabled: bool,
}
Expand description
Stack protection statistics.
Fields§
§canaries_placed: usize
§violations_detected: usize
§guard_pages_allocated: usize
§protection_enabled: bool
Trait Implementations§
Source§impl Clone for StackProtectionStats
impl Clone for StackProtectionStats
Source§fn clone(&self) -> StackProtectionStats
fn clone(&self) -> StackProtectionStats
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 StackProtectionStats
impl RefUnwindSafe for StackProtectionStats
impl Send for StackProtectionStats
impl Sync for StackProtectionStats
impl Unpin for StackProtectionStats
impl UnwindSafe for StackProtectionStats
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