Trait cpp_demangle::DemangleWrite[][src]

pub trait DemangleWrite {
    fn write_string(&mut self, s: &str) -> Result;

    fn push_demangle_node(&mut self, _: DemangleNodeType) { ... }
fn pop_demangle_node(&mut self) { ... } }
Expand description

Sink for demangled text that reports syntactic structure.

Required methods

Same as fmt::Write::write_str.

Provided methods

Called when we are entering the scope of some AST node.

Called when we are exiting the scope of some AST node for which push_demangle_node was called.

Implementors