Struct handlebars::Decorator
[−]
[src]
pub struct Decorator<'a> { /* fields omitted */ }
Render-time Decorator data when using in a decorator definition
Methods
impl<'a, 'b> Directive<'a>
[src]
fn name(&self) -> &str
Returns helper name
fn params(&self) -> &Vec<ContextJson>
Returns all helper params, resolved within the context
fn param(&self, idx: usize) -> Option<&ContextJson>
Returns nth helper param, resolved within the context
fn hash(&self) -> &BTreeMap<String, ContextJson>
Returns hash, resolved within the context
fn hash_get(&self, key: &str) -> Option<&ContextJson>
Return hash value of a given key, resolved within the context
fn template(&self) -> Option<&Template>
Returns the default inner template if any