[][src]Struct sqlite3_native::PCache

#[repr(C)]pub struct PCache {
    pub pDirty: *mut PgHdr,
    pub pDirtyTail: *mut PgHdr,
    pub pSynced: *mut PgHdr,
    pub nRefSum: c_int,
    pub szCache: c_int,
    pub szSpill: c_int,
    pub szPage: c_int,
    pub szExtra: c_int,
    pub bPurgeable: u8_0,
    pub eCreate: u8_0,
    pub xStress: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut PgHdr) -> c_int>,
    pub pStress: *mut c_void,
    pub pCache: *mut sqlite3_pcache,
}

Fields

pDirty: *mut PgHdrpDirtyTail: *mut PgHdrpSynced: *mut PgHdrnRefSum: c_intszCache: c_intszSpill: c_intszPage: c_intszExtra: c_intbPurgeable: u8_0eCreate: u8_0xStress: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut PgHdr) -> c_int>pStress: *mut c_voidpCache: *mut sqlite3_pcache

Trait Implementations

impl Clone for PCache[src]

impl Copy for PCache[src]

Auto Trait Implementations

impl !RefUnwindSafe for PCache

impl !Send for PCache

impl !Sync for PCache

impl Unpin for PCache

impl !UnwindSafe for PCache

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.