pub fn keys(
fields: &BTreeMap<KeyString, Value>,
) -> impl Iterator<Item = KeyString>Expand description
Iterates over all paths in form a.b[0].c[1] in alphabetical order.
It is implemented as a wrapper around all_fields to reduce code
duplication.