Enum mustache::Data
[−]
[src]
pub enum Data {
Null,
String(String),
Bool(bool),
Vec(Vec<Data>),
Map(HashMap<String, Data>),
Fun(RefCell<Box<FnMut(String) -> String + Send>>),
}Variants
NullString(String)Bool(bool)Vec(Vec<Data>)Map(HashMap<String, Data>)Fun(RefCell<Box<FnMut(String) -> String + Send>>)
Trait Implementations
impl PartialEq for Data[src]
fn eq(&self, other: &Data) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.