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§