Struct handlebars::template::ExpressionSpec[][src]

pub struct ExpressionSpec {
    pub name: Parameter,
    pub params: Vec<Parameter>,
    pub hash: BTreeMap<String, Parameter>,
    pub block_param: Option<BlockParam>,
    pub omit_pre_ws: bool,
    pub omit_pro_ws: bool,
}

Fields

Trait Implementations

impl PartialEq for ExpressionSpec
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ExpressionSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ExpressionSpec
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations