sqlite-tiny 0.7.9

A minimalistic SQLite crate which ships the amalgamation variant and provides a tiny Rust API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Some glue definitions for rust bindgen
 */

#include "sqlite3.h"

/**
 * @brief See SQLITE_TRANSIENT
 * 
 * @note Necessary due to limitations in bindgen and Rust's strict pointer casting rules
 */
sqlite3_destructor_type sqlite3_transient() {
    return SQLITE_TRANSIENT;
}