Trait liquid::Renderable [] [src]

pub trait Renderable {
    fn render(&self, context: &mut Context) -> Option<String>;
}

Any object (tag/block) that can be rendered by liquid must implement this trait.

Required Methods

fn render(&self, context: &mut Context) -> Option<String>

Implementors