pub async fn get_symbolication_result<'h, R>(
    query: SymbolicationQuery<'_>,
    helper: &'h impl FileAndPathHelper<'h>
) -> Result<R> where
    R: SymbolicationResult
Expand description

A generic method which is used in the implementation of both get_compact_symbol_table and query_api. Allows obtaining symbol data for a given binary. The level of detail is determined by query.result_kind: The caller can either get a regular symbol table, or extended information for a set of addresses, if the information is present in the found files. See SymbolicationResultKind for more details.