Struct backtrace::SymbolName [−][src]
pub struct SymbolName<'a> { /* fields omitted */ }
A wrapper around a symbol name to provide ergonomic accessors to the demangled name, the raw bytes, the raw string, etc.
Implementations
impl<'a> SymbolName<'a>
[src]
impl<'a> SymbolName<'a>
[src]pub fn new(bytes: &'a [u8]) -> SymbolName<'a>
[src]
Creates a new symbol name from the raw underlying bytes.
pub fn as_str(&self) -> Option<&'a str>
[src]
Returns the raw (mangled) symbol name as a str
if the symbol is valid utf-8.
Use the Display
implementation if you want the demangled version.
pub fn as_bytes(&self) -> &'a [u8]
[src]
Returns the raw symbol name as a list of bytes