[][src]Struct sqlite3_native::PCacheGlobal

#[repr(C)]pub struct PCacheGlobal {
    pub grp: PGroup,
    pub isInit: c_int,
    pub separateCache: c_int,
    pub nInitPage: c_int,
    pub szSlot: c_int,
    pub nSlot: c_int,
    pub nReserve: c_int,
    pub pStart: *mut c_void,
    pub pEnd: *mut c_void,
    pub mutex: *mut sqlite3_mutex,
    pub pFree: *mut PgFreeslot,
    pub nFreeSlot: c_int,
    pub bUnderPressure: c_int,
}

Fields

grp: PGroupisInit: c_intseparateCache: c_intnInitPage: c_intszSlot: c_intnSlot: c_intnReserve: c_intpStart: *mut c_voidpEnd: *mut c_voidmutex: *mut sqlite3_mutexpFree: *mut PgFreeslotnFreeSlot: c_intbUnderPressure: c_int

Trait Implementations

impl Clone for PCacheGlobal[src]

impl Copy for PCacheGlobal[src]

Auto Trait Implementations

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.