[][src]Struct sqlite3_native::PCache1

#[repr(C)]pub struct PCache1 {
    pub pGroup: *mut PGroup,
    pub pnPurgeable: *mut c_uint,
    pub szPage: c_int,
    pub szExtra: c_int,
    pub szAlloc: c_int,
    pub bPurgeable: c_int,
    pub nMin: c_uint,
    pub nMax: c_uint,
    pub n90pct: c_uint,
    pub iMaxKey: c_uint,
    pub nPurgeableDummy: c_uint,
    pub nRecyclable: c_uint,
    pub nPage: c_uint,
    pub nHash: c_uint,
    pub apHash: *mut *mut PgHdr1,
    pub pFree: *mut PgHdr1,
    pub pBulk: *mut c_void,
}

Fields

pGroup: *mut PGrouppnPurgeable: *mut c_uintszPage: c_intszExtra: c_intszAlloc: c_intbPurgeable: c_intnMin: c_uintnMax: c_uintn90pct: c_uintiMaxKey: c_uintnPurgeableDummy: c_uintnRecyclable: c_uintnPage: c_uintnHash: c_uintapHash: *mut *mut PgHdr1pFree: *mut PgHdr1pBulk: *mut c_void

Trait Implementations

impl Clone for PCache1[src]

impl Copy for PCache1[src]

Auto Trait Implementations

impl RefUnwindSafe for PCache1

impl !Send for PCache1

impl !Sync for PCache1

impl Unpin for PCache1

impl UnwindSafe for PCache1

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.