jasn 0.2.0

A Rust library for parsing and formatting JASN (Just Another Serialization Notation)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Empty structures */
{
  empty_object: {},
  empty_array: [],
  empty_string: "",
  empty_binary_b64: b64"",
  empty_binary_hex: hex"",
  
  /* Nested empties */
  nested: {
    more: {
      empties: [[], {}, ""],
    },
  },
}