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
is not implemented for
I need the u64 as key, but this lib does not support, has the milestone ?
let k = 123u64; let bytes: [u8; 8] = unsafe { std::mem::transmute(i) }; database.put(write_opts, i, &bytes);
The text was updated successfully, but these errors were encountered:
You can implement a Key type yourself, that implements the Key trait and does what you need, like this: https://docs.rs/db-key/0.0.5/src/db_key/.cargo/registry/src/github.com-1ecc6299db9ec823/db-key-0.0.5/src/lib.rs.html#1-4
Sorry, something went wrong.
According to the orphan rule, I cannot implement the Key interface in db-key in business code. I have to modify crate db-key directly.
No branches or pull requests
I need the u64 as key, but this lib does not support, has the milestone ?
The text was updated successfully, but these errors were encountered: