14 stable releases

new 2.13.2 Oct 15, 2024
2.13.1 Sep 14, 2024
2.13.0 Mar 28, 2024
2.11.1 Jan 31, 2024
2.9.2 Sep 30, 2023

#2234 in Encoding

Download history 55/week @ 2024-06-24 31/week @ 2024-07-01 36/week @ 2024-07-08 31/week @ 2024-07-15 10/week @ 2024-07-22 129/week @ 2024-07-29 75/week @ 2024-08-05 101/week @ 2024-08-12 101/week @ 2024-08-19 181/week @ 2024-08-26 176/week @ 2024-09-02 567/week @ 2024-09-09 201/week @ 2024-09-16 103/week @ 2024-09-23 263/week @ 2024-09-30 244/week @ 2024-10-07

866 downloads per month
Used in 3 crates (via sval_derive)

Apache-2.0 OR MIT

325KB
9K SLoC

sval_flatten

Rust Latest version Documentation Latest

Flatten nested sval::Values onto their parent.


lib.rs:

Flatten nested values when streaming.

This library is like the standard library's Iterator::flatten method, but for sval::Streams. Given a value, it will flatten its nested values onto a parent structure. It supports flattening any combination of map, sequence, record, or tuple onto any other.

If you're using sval_derive, you can use the #[flatten] attribute on a field.

Specifics

Flattening unwraps containers and translates their values into the form needed by their parent. The following types can be flattened:

  • maps
  • sequences
  • records
  • tuples

Any other type, including primitives like tags, booleans, and text will be ignored if flattened.

Maps

  • maps: keys are passed through directly, even if they're complex values like other maps.
  • sequences: keys are the stringified offset of sequence values.
  • records: keys are the label of record values.
  • tuples: keys are the stringified index of tuple values.

Sequences

  • maps: map keys are ignored; only map values are flattened.
  • sequences: sequence values are passed through directly.
  • records: record values are passed through directly.
  • tuples: tuple values are passed through directly.

Records

  • maps: map keys are stringified into labels. For complex values like other maps each nested value is stringified and concatenated together.
  • sequences: labels are the stringified offset of sequence values.
  • records: labels are passed through directly.
  • tuples: labels are the stringified index of tuple values.

Tuples

  • maps: map keys are ignored; only map values are flattened.
  • sequences: indexes are the offset of sequence values.
  • records: indexes are the offset of record values.
  • tuples: tuple values are passed through directly.

Dependencies

~90KB