Home
last modified time | relevance | path

Searched refs:from_serde (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/log/src/kv/
Dvalue.rs70 $crate::kv::Value::from_serde(&$capture)
240 pub fn from_serde<T>(value: &'v T) -> Self in from_serde() method
859 assert_eq!(Some(42u64), Value::from_serde(&42).to_u64()); in test_capture_serde()
/third_party/rust/crates/log/rfcs/
D0296-structured-logging.md250 Value::from_serde(self)
441 visitor.visit_pair(source::Key::from_str(k), source::Value::from_serde(v))
447 The `Key::from_str` method accepts any `T: Borrow<str>`. The `Value::from_serde` accepts any `T: se…
647 pub fn from_serde(v: &'v (impl serde::Serialize + Debug)) -> Self {