Struct liquid::LiquidOptions
[−]
[src]
pub struct LiquidOptions {
pub blocks: HashMap<String, Box<Block>>,
pub tags: HashMap<String, Box<Tag>>,
pub error_mode: ErrorMode,
}Fields
blocks: HashMap<String, Box<Block>>
error_mode: ErrorMode
Methods
impl LiquidOptions[src]
fn register_block(&mut self, name: &str, block: Box<Block>)
fn register_tag(&mut self, name: &str, tag: Box<Tag>)
Trait Implementations
impl Default for LiquidOptions[src]
fn default() -> LiquidOptions
Returns the "default value" for a type. Read more