pub type SqliteNull = ();Expand description
Null type alias that equals to ()
Trait Implementations§
Source§impl<'a> ColumnCapabilities<'a> for SqliteNull
impl<'a> ColumnCapabilities<'a> for SqliteNull
Source§fn get_data(
_stmt: *mut sqlite3_stmt,
_i: usize,
) -> Result<Self, MinSqliteWrapperError<'a>>where
Self: Sized,
fn get_data(
_stmt: *mut sqlite3_stmt,
_i: usize,
) -> Result<Self, MinSqliteWrapperError<'a>>where
Self: Sized,
Reads the column data of the rows that returns from the SQL query. Read more
Source§fn bind_val(self, stmt: *mut sqlite3_stmt, i: usize) -> SqlitePrimaryResultwhere
Self: Sized,
fn bind_val(self, stmt: *mut sqlite3_stmt, i: usize) -> SqlitePrimaryResultwhere
Self: Sized,
Binds the value of a parameter to a prepared statement indicator. Read more