Searched refs:visit_pair (Results 1 – 3 of 3) sorted by relevance
/third_party/rust/crates/log/src/kv/ |
D | source.rs | 73 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in get_default() method 93 fn visit_pair(&mut self, _: Key<'kvs>, _: Value<'kvs>) -> Result<(), Error> { in count_default() method 128 visitor.visit_pair(self.0.to_key(), self.1.to_value()) in visit() 195 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error>; in visit_pair() method 202 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() function 203 (**self).visit_pair(key, value) in visit_pair() 208 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() method 215 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() method 222 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() method 229 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() method [all …]
|
/third_party/rust/crates/log/rfcs/ |
D | 0296-structured-logging.md | 419 fn visit_pair(&mut self, k: Key<'kvs>, v: Value<'kvs>) -> Result<(), Error>; 423 … to work with key-value pairs that can live for longer than a single call to `Visitor::visit_pair`. 441 visitor.visit_pair(source::Key::from_str(k), source::Value::from_serde(v)) 467 …fn visit_pair<'vis>(&'vis mut self, k: source::Key<'kvs>, v: source::Value<'kvs>) -> Result<(), so… 481 visitor.visit_pair(k, v)?; 1276 visitor.visit_pair(self.0.to_key(), self.1.to_value()) 1330 visitor.visit_pair(k.borrow().to_key(), v.to_value())?; 1352 visitor.visit_pair(k.borrow().to_key(), v.to_value())?; 1409 fn visit_pair(&mut self, k: Key<'kvs>, v: Value<'kvs>) -> Result<(), Error>; 1565 fn visit_pair(&mut self, k: Key<'kvs>, v: Value<'kvs>) -> Result<(), Error>;
|
/third_party/rust/crates/log/src/ |
D | lib.rs | 1903 fn visit_pair( in test_record_key_values_builder() method
|