Enum cwe_checker::CliDebugMode
source · pub enum CliDebugMode {
Pi,
IrRaw,
IrNorm,
IrOpt,
PcodeRaw,
}
Expand description
Selects which kind of debug output is displayed.
Variants§
Pi
Result of the Pointer Inference computation.
IrRaw
Unnormalized IR form of the program.
IrNorm
Normalized IR form of the program.
IrOpt
Optimized IR form of the program.
PcodeRaw
Output of the Ghidra plugin.
Trait Implementations§
source§impl Clone for CliDebugMode
impl Clone for CliDebugMode
source§fn clone(&self) -> CliDebugMode
fn clone(&self) -> CliDebugMode
Returns a copy 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 CliDebugMode
impl Debug for CliDebugMode
source§impl From<&CliDebugMode> for Stage
impl From<&CliDebugMode> for Stage
source§fn from(mode: &CliDebugMode) -> Self
fn from(mode: &CliDebugMode) -> Self
Converts to this type from the input type.
source§impl ValueEnum for CliDebugMode
impl ValueEnum for CliDebugMode
impl Copy for CliDebugMode
Auto Trait Implementations§
impl RefUnwindSafe for CliDebugMode
impl Send for CliDebugMode
impl Sync for CliDebugMode
impl Unpin for CliDebugMode
impl UnwindSafe for CliDebugMode
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