Lines Matching defs:Value
31 impl From<f32> for Value { implementation
47 impl From<f64> for Value { implementation
63 impl From<bool> for Value { implementation
79 impl From<String> for Value { implementation
95 impl<'a> From<&'a str> for Value { implementation
111 impl<'a> From<Cow<'a, str>> for Value { implementation
136 impl From<Number> for Value { implementation
152 impl From<Map<String, Value>> for Value { implementation
169 impl<T: Into<Value>> From<Vec<T>> for Value { implementation
185 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value { implementation
201 impl<T: Into<Value>> FromIterator<T> for Value { implementation
231 impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value { implementation
251 impl From<()> for Value { implementation
267 impl<T> From<Option<T>> for Value implementation