Trait Template

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

A trait to render template structs.

Required Methods§

Source

fn render(self) -> String

Implementors§