Lines Matching defs:Value
19 pub enum Value { enum
48 impl Value { implementation
276 pub fn as_tag(&self) -> Option<(u64, &Value)> { in as_tag()
296 pub fn as_tag_mut(&mut self) -> Option<(&mut u64, &mut Value)> { in as_tag_mut()
337 pub fn as_array(&self) -> Option<&Vec<Value>> { in as_array()
360 pub fn as_array_mut(&mut self) -> Option<&mut Vec<Value>> { in as_array_mut()
405 pub fn as_map(&self) -> Option<&Vec<(Value, Value)>> { in as_map() argument
428 pub fn as_map_mut(&mut self) -> Option<&mut Vec<(Value, Value)>> { in as_map_mut() argument
478 impl From<u128> for Value { implementation
494 impl From<i128> for Value { implementation
515 impl From<char> for Value { implementation