Enum incrust::container::template::Node [] [src]

pub enum Node {
    Text(String),
    Mustache(Mustache),
    For(ForStatement),
    If(IfStatement),
    Block(String),
    Include(FullExpression),
}

Variants

Trait Implementations

impl Debug for Node
[src]

Formats the value using the given formatter.

impl PartialEq for Node
[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 Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<Mustache> for Node
[src]

Performs the conversion.

impl From<IfStatement> for Node
[src]

Performs the conversion.

impl From<ForStatement> for Node
[src]

Performs the conversion.