Lines Matching full:into
14 Value::Number(n.into())
40 /// let x: Value = f.into();
56 /// let x: Value = f.into();
72 /// let x: Value = b.into();
88 /// let x: Value = s.into();
104 /// let x: Value = s.into();
121 /// let x: Value = s.into();
129 /// let x: Value = s.into();
145 /// let x: Value = n.into();
161 /// m.insert("Lorem".to_string(), "ipsum".into());
162 /// let x: Value = m.into();
169 impl<T: Into<Value>> From<Vec<T>> for Value {
178 /// let x: Value = v.into();
181 Value::Array(f.into_iter().map(Into::into).collect()) in from()
185 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value {
194 /// let x: Value = v.into();
197 Value::Array(f.iter().cloned().map(Into::into).collect()) in from()
201 impl<T: Into<Value>> FromIterator<T> for Value {
227 Value::Array(iter.into_iter().map(Into::into).collect()) in from_iter()
231 impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value {
245 .map(|(k, v)| (k.into(), v.into())) in from_iter()
260 /// let x: Value = u.into();
269 T: Into<Value>,
274 Some(value) => Into::into(value), in from()