pub trait Render {
    // Required method
    fn render(&self, op: &RenderOptions) -> Result<String, Error>;
}

Required Methods§

Implementors§