Trait FunctionDecompilerErrorDetails

Source
pub trait FunctionDecompilerErrorDetails {
    // Required methods
    fn context(&self) -> &FunctionDecompilerErrorContext;
    fn backtrace(&self) -> &Backtrace;
    fn error_type(&self) -> String;
}
Expand description

A trait to provide details for a function decompiler error

Required Methods§

Source

fn context(&self) -> &FunctionDecompilerErrorContext

Get the context for the error

Source

fn backtrace(&self) -> &Backtrace

Get the backtrace for the error

Source

fn error_type(&self) -> String

Get the type for the error

Implementors§