pub trait Demangler<'a, 'b> {
// Required methods
fn demangle(&'b mut self, ident: &'a str) -> Result<Cow<'a, str>>;
fn stop(self) -> Result<()>;
}
Expand description
Basic interface to demangle function/method names
pub trait Demangler<'a, 'b> {
// Required methods
fn demangle(&'b mut self, ident: &'a str) -> Result<Cow<'a, str>>;
fn stop(self) -> Result<()>;
}
Basic interface to demangle function/method names