Structurray
A Rust Library designed to help create structs that store many values of the same type.
These structures, or psuedo-arrays, are useful for increasing storage efficiency in Google Firebase (realtime database)
or other environments that store data as a string-like object but do not support arrays. This is because Structurray uses a Base62
algorithm, as outlined in the documentation of
ascii_basing, to reduce
the length of identifiers compared to the base-10 naming algorithm usually used by default.
For more information about this library, check its documentation.