pub struct FunctionDecompilerBuilder<'a> { /* private fields */ }
Expand description
The builder for a function decompiler
Implementations§
Source§impl<'a> FunctionDecompilerBuilder<'a>
impl<'a> FunctionDecompilerBuilder<'a>
Sourcepub fn emit_context(self, emit_context: EmitContext) -> Self
pub fn emit_context(self, emit_context: EmitContext) -> Self
Set the emit context for the function decompiler
Sourcepub fn structure_debug_mode(self, structure_debug_mode: bool) -> Self
pub fn structure_debug_mode(self, structure_debug_mode: bool) -> Self
Set the structure debug mode for the function decompiler. These keeps track of the structure of the function as it is being analyzed with StructureAnalysis.
Sourcepub fn structure_analysis_max_iterations(self, max_iterations: usize) -> Self
pub fn structure_analysis_max_iterations(self, max_iterations: usize) -> Self
Sets the maximum number of iterations for the structure analysis
Sourcepub fn build(self) -> FunctionDecompiler<'a>
pub fn build(self) -> FunctionDecompiler<'a>
Build the function decompiler
Auto Trait Implementations§
impl<'a> Freeze for FunctionDecompilerBuilder<'a>
impl<'a> RefUnwindSafe for FunctionDecompilerBuilder<'a>
impl<'a> Send for FunctionDecompilerBuilder<'a>
impl<'a> Sync for FunctionDecompilerBuilder<'a>
impl<'a> Unpin for FunctionDecompilerBuilder<'a>
impl<'a> UnwindSafe for FunctionDecompilerBuilder<'a>
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