See for example: sqlite3_result_blob.
In sqlite3 these support 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.
See for example:
sqlite3_result_blob.In sqlite3 these support 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
-1into theOption<T>directly, which to my knowledge is not guaranteed to be correct.