pub trait TemplateRendering {
    // Required method
    fn render_with(&self, f: &Path) -> Result<String>;
}
Expand description

Render molecule in user defined format

Required Methods§

source

fn render_with(&self, f: &Path) -> Result<String>

Render with input template file.

Implementations on Foreign Types§

source§

impl TemplateRendering for Molecule

source§

fn render_with(&self, path: &Path) -> Result<String>

Implementors§