Enum hal::HalState
[−]
[src]
pub enum HalState {
I64(i64),
F64(f64),
U64(u64),
HalString(String),
Boolean(bool),
Null,
HalList(List),
Object(HalObject),
}Represents Hal data value
Variants
I64(i64)F64(f64)U64(u64)HalString(String)Boolean(bool)NullHalList(List)Object(HalObject)Trait Implementations
impl Debug for HalState[src]
impl PartialEq for HalState[src]
fn eq(&self, __arg_0: &HalState) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &HalState) -> bool
This method tests for !=.
impl Clone for HalState[src]
fn clone(&self) -> HalState
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more