Struct symbolic_debuginfo::BreakpadFormat[]

pub struct BreakpadFormat<'a> { /* fields omitted */ }

Wrapper around DebugId for Breakpad formatting.

Example:

use std::str::FromStr;
use debugid::DebugId;

let id = DebugId::from_breakpad("DFB8E43AF2423D73A453AEB6A777EF75a")?;
assert_eq!("DFB8E43AF2423D73A453AEB6A777EF75a".to_string(), id.breakpad().to_string());

Trait Implementations

impl<'a> Display for BreakpadFormat<'a>

Formats the value using the given formatter. Read more

impl<'a> Debug for BreakpadFormat<'a>

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for BreakpadFormat<'a>

impl<'a> Sync for BreakpadFormat<'a>