[][src]Struct sqlite3_native::Wal

#[repr(C)]pub struct Wal {
    pub pVfs: *mut sqlite3_vfs,
    pub pDbFd: *mut sqlite3_file,
    pub pWalFd: *mut sqlite3_file,
    pub iCallback: u32_0,
    pub mxWalSize: i64_0,
    pub nWiData: c_int,
    pub szFirstBlock: c_int,
    pub apWiData: *mut *mut u32_0,
    pub szPage: u32_0,
    pub readLock: i16_0,
    pub syncFlags: u8_0,
    pub exclusiveMode: u8_0,
    pub writeLock: u8_0,
    pub ckptLock: u8_0,
    pub readOnly: u8_0,
    pub truncateOnCommit: u8_0,
    pub syncHeader: u8_0,
    pub padToSectorBoundary: u8_0,
    pub bShmUnreliable: u8_0,
    pub hdr: WalIndexHdr,
    pub minFrame: u32_0,
    pub iReCksum: u32_0,
    pub zWalName: *const c_char,
    pub nCkpt: u32_0,
}

Fields

pVfs: *mut sqlite3_vfspDbFd: *mut sqlite3_filepWalFd: *mut sqlite3_fileiCallback: u32_0mxWalSize: i64_0nWiData: c_intszFirstBlock: c_intapWiData: *mut *mut u32_0szPage: u32_0readLock: i16_0syncFlags: u8_0exclusiveMode: u8_0writeLock: u8_0ckptLock: u8_0readOnly: u8_0truncateOnCommit: u8_0syncHeader: u8_0padToSectorBoundary: u8_0bShmUnreliable: u8_0hdr: WalIndexHdrminFrame: u32_0iReCksum: u32_0zWalName: *const c_charnCkpt: u32_0

Trait Implementations

impl Clone for Wal[src]

impl Copy for Wal[src]

Auto Trait Implementations

impl RefUnwindSafe for Wal

impl !Send for Wal

impl !Sync for Wal

impl Unpin for Wal

impl UnwindSafe for Wal

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.