Expand description
Wire format types for the WebSocket and HTTP protocol layers.
Parameters are encoded in the following wire format:
- Positional:
[{"type":"Int2","value":"1234"}, ...] - Named:
{"key": {"type":"Int2","value":"1234"}, ...}
These types deserialize that format and convert it to the internal Params type.
Structs§
- Wire
Value - Wire format for a single typed value:
{"type": "Int2", "value": "1234"}
Enums§
- Wire
Params - Wire format for query parameters.