pub fn parse_binary_auto<P: AsRef<Path>>(
binary_path: P,
base_name: &str,
) -> Result<(), BinaryExportError>
Expand description
ยงExample
use memscope_rs::export::binary::parse_binary_auto;
// Automatically detects type and uses optimal strategy
parse_binary_auto("MemoryAnalysis/my_program.memscope", "my_program")?;