Skip to main content

MathRenderer

Trait MathRenderer 

Source
pub trait MathRenderer {
    type Output;

    // Required method
    fn render(&self, node: &EqNode) -> Self::Output;
}
Expand description

Trait for rendering an EqNode AST into a target output format.

Required Associated Types§

Required Methods§

Source

fn render(&self, node: &EqNode) -> Self::Output

Render an equation AST node into the target output.

Implementors§