pub type Key = String;Expand description
Key type for compressed references.
Keys are base-62 encoded strings that reference positions in the values array.
The base-62 encoding uses characters 0-9, A-Z, and a-z.
§Examples
"0"- First value (index 0)"A"- Eleventh value (index 10)"10"- Sixty-third value (index 62)
Aliased Type§
pub struct Key { /* private fields */ }