pub struct AnalysisOptions {
pub allow_unknown_function_calls: bool,
pub provide_reloc_source: bool,
}Fields§
§allow_unknown_function_calls: boolGenerates function symbols when a local function call doesn’t lead to a known function. This can happen if the destination function is encrypted or otherwise wasn’t found during function analysis.
provide_reloc_source: boolIf true, every relocation in relocs.txt will have a comment explaining where/why it was generated.
Auto Trait Implementations§
impl Freeze for AnalysisOptions
impl RefUnwindSafe for AnalysisOptions
impl Send for AnalysisOptions
impl Sync for AnalysisOptions
impl Unpin for AnalysisOptions
impl UnwindSafe for AnalysisOptions
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