Skip to main content

json_to_f64

Function json_to_f64 

Source
pub fn json_to_f64(v: &Value, coerce_bool: bool) -> Option<f64>
Expand description

Coerce a JSON value to f64.

  • Numbers: as_f64() directly
  • Strings: parse as f64 ("5"5.0)
  • Booleans: true1.0, false0.0 (when coerce_bool is true)
  • Other types: None