pub struct AnalyzeOptions {
pub include_disassembly: bool,
pub max_functions: usize,
pub max_symbols: usize,
pub max_instructions_per_function: usize,
}Expand description
Analysis options for a single binary input.
Fields§
§include_disassembly: boolInclude machine-level disassembly when available.
max_functions: usizeMaximum number of functions to disassemble.
max_symbols: usizeMaximum number of symbols to include in report.
max_instructions_per_function: usizeMaximum instructions per function.
Trait Implementations§
Source§impl Clone for AnalyzeOptions
impl Clone for AnalyzeOptions
Source§fn clone(&self) -> AnalyzeOptions
fn clone(&self) -> AnalyzeOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnalyzeOptions
impl Debug for AnalyzeOptions
Auto Trait Implementations§
impl Freeze for AnalyzeOptions
impl RefUnwindSafe for AnalyzeOptions
impl Send for AnalyzeOptions
impl Sync for AnalyzeOptions
impl Unpin for AnalyzeOptions
impl UnsafeUnpin for AnalyzeOptions
impl UnwindSafe for AnalyzeOptions
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