pub async fn process_minidump_with_options<'a, T, P>(
    dump: &Minidump<'a, T>,
    symbol_provider: &P,
    options: ProcessorOptions<'_>
) -> Result<ProcessState, ProcessError>
where T: Deref<Target = [u8]> + 'a, P: SymbolProvider + Sync,
Expand description

Process dump with the given options and return a report as a ProcessState.

See ProcessorOptions for details on the specific features that can be enabled and how to choose them.