Enum incrust::template::Parsed [] [src]

pub enum Parsed {
    Text(String),
    Comment(String),
    Mustache(Mustache),
    ForEach(ForEach),
}

Variants

Text(String)Comment(String)Mustache(Mustache)ForEach(ForEach)

Trait Implementations

impl PartialEq for Parsed
[src]

fn eq(&self, __arg_0: &Parsed) -> bool

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

fn ne(&self, __arg_0: &Parsed) -> bool

This method tests for !=.

impl Debug for Parsed
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<Mustache> for Parsed
[src]

fn from(v: Mustache) -> Self

Performs the conversion.