pub enum StackVerdict {
NoChange,
ChangeToExploitable,
ChangeToNotExploitable,
}Expand description
Verdict from stack/backtrace analysis.
Variants§
NoChange
No change to the exploitability rating.
ChangeToExploitable
Override to exploitable based on suspicious backtrace.
ChangeToNotExploitable
Override to not exploitable based on known-safe pattern.
Trait Implementations§
Source§impl Clone for StackVerdict
impl Clone for StackVerdict
Source§fn clone(&self) -> StackVerdict
fn clone(&self) -> StackVerdict
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 StackVerdict
impl Debug for StackVerdict
Source§impl PartialEq for StackVerdict
impl PartialEq for StackVerdict
impl Copy for StackVerdict
impl Eq for StackVerdict
impl StructuralPartialEq for StackVerdict
Auto Trait Implementations§
impl Freeze for StackVerdict
impl RefUnwindSafe for StackVerdict
impl Send for StackVerdict
impl Sync for StackVerdict
impl Unpin for StackVerdict
impl UnsafeUnpin for StackVerdict
impl UnwindSafe for StackVerdict
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