foxglove 0.20.0

Foxglove SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
source: rust/foxglove/src/protocol/common/parameter.rs
expression: "Parameter::dict(\"outer\", maplit::btreemap!\n{\n    \"bool\".into() => ParameterValue::Bool(false), \"nested\".into() =>\n    ParameterValue::Dict(maplit::btreemap!\n    { \"inner\".into() => ParameterValue::Float64(1.0), }), \"float64\".into() =>\n    ParameterValue::Float64(1.23),\n})"
---
{
  "name": "outer",
  "value": {
    "bool": false,
    "float64": 1.23,
    "nested": {
      "inner": 1.0
    }
  }
}