pub struct ClassifyConfig {
pub exploitable_reads: bool,
pub exploitable_jit: bool,
pub ignore_frame_pointer: bool,
}Expand description
Configuration for exploitability classification.
Fields§
§exploitable_reads: boolIf true, read-access crashes are considered exploitable (CR_EXPLOITABLE_READS).
exploitable_jit: boolIf true, crashes in JIT code (frame 0 in ???) are exploitable (CR_EXPLOITABLE_JIT).
ignore_frame_pointer: boolIf true, frame pointer inconsistency is ignored (CR_IGNORE_FRAME_POINTER).
Trait Implementations§
Source§impl Clone for ClassifyConfig
impl Clone for ClassifyConfig
Source§fn clone(&self) -> ClassifyConfig
fn clone(&self) -> ClassifyConfig
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 moreSource§impl Debug for ClassifyConfig
impl Debug for ClassifyConfig
Source§impl Default for ClassifyConfig
impl Default for ClassifyConfig
Source§fn default() -> ClassifyConfig
fn default() -> ClassifyConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ClassifyConfig
impl RefUnwindSafe for ClassifyConfig
impl Send for ClassifyConfig
impl Sync for ClassifyConfig
impl Unpin for ClassifyConfig
impl UnsafeUnpin for ClassifyConfig
impl UnwindSafe for ClassifyConfig
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