Trait Render

Source
pub trait Render {
    // Required method
    fn render(self) -> Result<String>;
}
Expand description

The Render trait represents things that can be rendered to a String

Required Methods§

Source

fn render(self) -> Result<String>

Renders this to a String

Implementors§