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
See for example: sqlite3_result_blob.
sqlite3_result_blob
In sqlite3 these supports special sentinel values which marks the value as transient, see: https://sqlite.org/c3ref/c_static.html.
This can only be done by coercing the sentinel value -1 into the Option<T> directly, which to my knowledge is not guaranteed to be correct.
-1
Option<T>
The text was updated successfully, but these errors were encountered:
Thank you for the note. I guess one has to look into how to customize bindgen to accommodate this.
bindgen
Sorry, something went wrong.
No branches or pull requests
See for example:
sqlite3_result_blob
.In sqlite3 these supports special sentinel values which marks the value as transient, see: https://sqlite.org/c3ref/c_static.html.
This can only be done by coercing the sentinel value
-1
into theOption<T>
directly, which to my knowledge is not guaranteed to be correct.The text was updated successfully, but these errors were encountered: