Lines Matching refs:Value
24 Result, Tag, Value,
43 fn into_value(self) -> Value { in into_value() argument
44 Value::Number(self as u32) in into_value()
48 impl Conversion for Value { implementation
51 Value::Bool(_) => DataType::Bool, in data_type()
52 Value::Number(_) => DataType::Number, in data_type()
53 Value::Bytes(_) => DataType::Bytes, in data_type()
57 fn into_value(self) -> Value { in into_value() argument
67 fn into_value(self) -> Value { in into_value() argument
68 Value::Bytes(self) in into_value()
77 fn into_value(self) -> Value { in into_value() argument
78 Value::Bool(self) in into_value()
87 fn into_value(self) -> Value { in into_value() argument
88 Value::Number(self) in into_value()
92 impl<K> Extension<K> for HashMap<K, Value>
101 if let Some(Value::Bool(b)) = self.get(key) { in get_bool_attr()
109 if let Some(Value::Number(num)) = self.get(key) { in get_enum_attr()
117 if let Some(Value::Number(num)) = self.get(key) { in get_num_attr()
125 if let Some(Value::Bytes(bytes)) = self.get(key) { in get_bytes_attr()