pub struct HierFormatResult {
pub names: Vec<String>,
pub this: Option<TranslatedValue>,
pub fields: Vec<HierFormatResult>,
}Fields§
§names: Vec<String>§this: Option<TranslatedValue>§fields: Vec<HierFormatResult>A list of subfields of arbitrary depth, flattened to remove hierarchy.
i.e. {a: {b: 0}, c: 0} is flattened to vec![a: {b: 0}, [a, b]: 0, c: 0]