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
Null
String(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) -> bool
1.0.0[src]
This method tests for !=
.