#[repr(C)]
pub struct sqlite3_vfs {
Show 22 fields pub iVersion: i32, pub szOsFile: i32, pub mxPathname: i32, pub pNext: *mut sqlite3_vfs, pub zName: PCSTR, pub pAppData: *mut c_void, pub xOpen: isize, pub xDelete: isize, pub xAccess: isize, pub xFullPathname: isize, pub xDlOpen: isize, pub xDlError: isize, pub xDlSym: isize, pub xDlClose: isize, pub xRandomness: isize, pub xSleep: isize, pub xCurrentTime: isize, pub xGetLastError: isize, pub xCurrentTimeInt64: isize, pub xSetSystemCall: isize, pub xGetSystemCall: isize, pub xNextSystemCall: isize,
}
Expand description

Required features: "Win32_System_SqlLite"

Fields

iVersion: i32szOsFile: i32mxPathname: i32pNext: *mut sqlite3_vfszName: PCSTRpAppData: *mut c_voidxOpen: isizexDelete: isizexAccess: isizexFullPathname: isizexDlOpen: isizexDlError: isizexDlSym: isizexDlClose: isizexRandomness: isizexSleep: isizexCurrentTime: isizexGetLastError: isizexCurrentTimeInt64: isizexSetSystemCall: isizexGetSystemCall: isizexNextSystemCall: isize

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.