[−][src]Struct libsqlite3_sys::sqlite3_module
Fields
iVersion: c_int
xCreate: Option<unsafe extern "C" fn(arg1: *mut sqlite3, pAux: *mut c_void, argc: c_int, argv: *const *const c_char, ppVTab: *mut *mut sqlite3_vtab, arg2: *mut *mut c_char) -> c_int>
xConnect: Option<unsafe extern "C" fn(arg1: *mut sqlite3, pAux: *mut c_void, argc: c_int, argv: *const *const c_char, ppVTab: *mut *mut sqlite3_vtab, arg2: *mut *mut c_char) -> c_int>
xBestIndex: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab, arg1: *mut sqlite3_index_info) -> c_int>
xDisconnect: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xDestroy: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xOpen: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab, ppCursor: *mut *mut sqlite3_vtab_cursor) -> c_int>
xClose: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> c_int>
xFilter: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor, idxNum: c_int, idxStr: *const c_char, argc: c_int, argv: *mut *mut sqlite3_value) -> c_int>
xNext: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> c_int>
xEof: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> c_int>
xColumn: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor, arg2: *mut sqlite3_context, arg3: c_int) -> c_int>
xRowid: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor, pRowid: *mut sqlite3_int64) -> c_int>
xUpdate: Option<unsafe extern "C" fn(arg1: *mut sqlite3_vtab, arg2: c_int, arg3: *mut *mut sqlite3_value, arg4: *mut sqlite3_int64) -> c_int>
xBegin: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xSync: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xCommit: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xRollback: Option<unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> c_int>
xFindFunction: Option<unsafe extern "C" fn(pVtab: *mut sqlite3_vtab, nArg: c_int, zName: *const c_char, pxFunc: *mut Option<unsafe extern "C" fn(arg1: *mut sqlite3_context, arg2: c_int, arg3: *mut *mut sqlite3_value)>, ppArg: *mut *mut c_void) -> c_int>
xRename: Option<unsafe extern "C" fn(pVtab: *mut sqlite3_vtab, zNew: *const c_char) -> c_int>
Trait Implementations
impl Copy for sqlite3_module
[src]
impl Clone for sqlite3_module
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for sqlite3_module
[src]
Auto Trait Implementations
impl Send for sqlite3_module
impl Sync for sqlite3_module
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,