Enum mustache::Data
[−]
[src]
pub enum Data {
OptVal(Option<Box<Data>>),
StrVal(String),
Bool(bool),
VecVal(Vec<Data>),
Map(HashMap<String, Data>),
Fun(RefCell<Box<FnMut(String) -> String + Send>>),
}Variants
OptVal(Option<Box<Data>>)StrVal(String)Bool(bool)VecVal(Vec<Data>)Map(HashMap<String, Data>)Fun(RefCell<Box<FnMut(String) -> String + Send>>)Trait Implementations
impl<'a> PartialEq for Data[src]
fn eq(&self, other: &Data) -> bool
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
This method tests for !=.