We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The idea here is something like this:
#[derive(Storable)] struct Foo { #[storey(key = "0")] bar: Item<u128>, #[storey(key = "1")] baz: Map<str, Item<u128>>, }
This should generate a Storable implementation for Foo, with every field being under a different one-byte key.
Storable
Foo
One use of this is to give Column the ability to store multiple "cells" per row, implementing a sort of "table".
Column
The text was updated successfully, but these errors were encountered:
Item
No branches or pull requests
The idea here is something like this:
This should generate a
Storable
implementation forFoo
, with every field being under a different one-byte key.One use of this is to give
Column
the ability to store multiple "cells" per row, implementing a sort of "table".The text was updated successfully, but these errors were encountered: