pub struct FunctionDecompiler<'a> { /* private fields */ }
Expand description
A struct to hold the state of a function decompiler
Implementations§
Source§impl FunctionDecompiler<'_>
impl FunctionDecompiler<'_>
Sourcepub fn decompile(
&mut self,
emit_context: EmitContext,
) -> Result<String, FunctionDecompilerError>
pub fn decompile( &mut self, emit_context: EmitContext, ) -> Result<String, FunctionDecompilerError>
Sourcepub fn get_structure_analysis_snapshots(
&self,
) -> Result<Vec<String>, FunctionDecompilerError>
pub fn get_structure_analysis_snapshots( &self, ) -> Result<Vec<String>, FunctionDecompilerError>
Get the structure analysis snapshots
Auto Trait Implementations§
impl<'a> Freeze for FunctionDecompiler<'a>
impl<'a> !RefUnwindSafe for FunctionDecompiler<'a>
impl<'a> Send for FunctionDecompiler<'a>
impl<'a> Sync for FunctionDecompiler<'a>
impl<'a> Unpin for FunctionDecompiler<'a>
impl<'a> !UnwindSafe for FunctionDecompiler<'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