Skip to main content

Record

Type Alias Record 

Source
pub type Record = Map<String, Value>;
Expand description

A free-form list result record. Used as the T for shape-driven list endpoints whose response schema depends on the requested shape.

Record is just a serde_json::Map. Use record.get("field_name") to pull a field, or serde_json::from_value(Value::Object(record)) to deserialize into your own typed struct.

Aliased Typeยง

pub struct Record { /* private fields */ }