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

Provides the function to render the object with RenderOptions into String

Required Methods§

Implementors§