rapx/analysis.rs
1pub mod core;
2pub mod opt;
3pub mod rcanary;
4pub mod safedrop;
5pub mod senryx;
6pub mod unsafety_isolation;
7pub mod utils;
8
9pub trait Analysis {
10 /// Return the name of the analysis.
11 fn name(&self) -> &'static str;
12
13 /// Execute the analysis.
14 fn run(&mut self);
15
16 /// Reset the analysis result.
17 fn reset(&mut self);
18}