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