pub const SQLITE_TRANSIENT: sqlite3_destructor_type;Expand description
Use SQLITE_TRANSIENT as a SQLite destructor
argument to instruct SQLite to clone the provided value before returning,
and for SQLite to take responsibility to free the memory it allocated for
the clone when it is no longer needed.
(See the SQLite reference for details.)