Searched refs:to_value (Results 1 – 7 of 7) sorted by relevance
/third_party/rust/crates/log/src/kv/ |
D | value.rs | 20 fn to_value(&self) -> Value; in to_value() method 27 fn to_value(&self) -> Value { in to_value() function 28 (**self).to_value() in to_value() 33 fn to_value(&self) -> Value { in to_value() method 162 value.to_value() in from_any() 396 fn to_value(&self) -> Value { in to_value() method 402 fn to_value(&self) -> Value { in to_value() method 409 fn to_value(&self) -> Value { in to_value() method 433 fn to_value(&self) -> Value { in to_value() method 439 fn to_value(&self) -> Value { in to_value() method [all …]
|
D | source.rs | 128 visitor.visit_pair(self.0.to_key(), self.1.to_value()) in visit() 133 Some(self.1.to_value()) in get() 294 visitor.visit_pair(key.to_key(), value.to_value())?; in visit() 300 HashMap::get(self, key.as_str()).map(|v| v.to_value()) in get() 315 visitor.visit_pair(key.to_key(), value.to_value())?; in visit() 321 BTreeMap::get(self, key.as_str()).map(|v| v.to_value()) in get() 708 visitor.visit_pair(self.key.to_key(), self.value.to_value()) in count()
|
/third_party/rust/crates/log/rfcs/ |
D | 0296-structured-logging.md | 113 fn to_value<'v>(&'v self) -> Value<'v>; 144 fn to_value(&self) -> Value { 181 fn to_value(&self) -> Value { 182 self.as_u128().to_value() 191 fn to_value(&self) -> Value { 201 fn to_value(&self) -> Value { 229 fn to_value(&self) -> Value { 249 fn to_value(&self) -> Value { 794 fn to_value(&self) -> Value; 810 fn to_value(&self) -> Value { [all …]
|
/third_party/rust/crates/clap/clap_complete/src/ |
D | dynamic.rs | 329 if let Ok(value) = arg.to_value() { in complete() 420 completions.extend(complete_arg_value(arg.to_value(), positional, current_dir)); in complete_arg() 423 if let Ok(value) = arg.to_value() { in complete_arg()
|
/third_party/rust/crates/clap/clap_lex/src/ |
D | lib.rs | 304 self.to_value() in is_number() 383 pub fn to_value(&self) -> Result<&str, &RawOsStr> { in to_value() method
|
/third_party/rust/crates/clap/src/parser/ |
D | parser.rs | 83 .to_value() in get_matches_with() 107 let sc_name = self.possible_subcommand(arg_os.to_value(), valid_arg_found); in get_matches_with() 354 .possible_subcommand(n.to_value(), valid_arg_found) in get_matches_with() 429 let sc_name = match arg_os.to_value() { in get_matches_with() 494 .possible_subcommand(arg_os.to_value(), valid_arg_found) in match_arg_error()
|
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/format/ |
D | json.rs | 480 let value = match serde_json::to_value(valuable_serde::Serializable::new(value)) { in record_value()
|