pub struct BugRecords {
    pub df_bugs: FxHashMap<usize, Span>,
    pub df_bugs_unwind: FxHashMap<usize, Span>,
    pub uaf_bugs: FxHashSet<Span>,
    pub dp_bugs: FxHashSet<Span>,
    pub dp_bugs_unwind: FxHashSet<Span>,
}Fields§
§df_bugs: FxHashMap<usize, Span>§df_bugs_unwind: FxHashMap<usize, Span>§uaf_bugs: FxHashSet<Span>§dp_bugs: FxHashSet<Span>§dp_bugs_unwind: FxHashSet<Span>Implementations§
Source§impl BugRecords
 
impl BugRecords
pub fn new() -> BugRecords
pub fn is_bug_free(&self) -> bool
pub fn df_bugs_output(&self, fn_name: Symbol, span: Span)
pub fn uaf_bugs_output(&self, fn_name: Symbol, span: Span)
pub fn dp_bug_output(&self, fn_name: Symbol, span: Span)
Auto Trait Implementations§
impl Freeze for BugRecords
impl RefUnwindSafe for BugRecords
impl Send for BugRecords
impl Sync for BugRecords
impl Unpin for BugRecords
impl UnwindSafe for BugRecords
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