cpp_demangle

Trait DemangleWrite

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

    // Provided methods
    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§

Source

fn write_string(&mut self, s: &str) -> Result

Same as fmt::Write::write_str.

Provided Methods§

Source

fn push_demangle_node(&mut self, _: DemangleNodeType)

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

Source

fn pop_demangle_node(&mut self)

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

Implementors§