pub trait RenderNode<W> {
// Required method
fn render_node<'a>(
&self,
writer: &mut W,
source: &'a str,
arena: &'a Arena,
node_ref: NodeRef,
entering: bool,
context: &mut Context,
) -> Result<WalkStatus>;
}Expand description
Traits for rendering nodes.