You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to deserialize a map (like a JSON or YAML object) while maintaining the order of key/value pairs? The BTreeMap type deserializes into kind of what I want except it does not maintain order.
Deserializing a map to Vec<(K, V)> would be perfect.