[][src]Struct sqlite3_native::MemPage

#[repr(C)]pub struct MemPage {
    pub isInit: u8_0,
    pub bBusy: u8_0,
    pub intKey: u8_0,
    pub intKeyLeaf: u8_0,
    pub pgno: Pgno,
    pub leaf: u8_0,
    pub hdrOffset: u8_0,
    pub childPtrSize: u8_0,
    pub max1bytePayload: u8_0,
    pub nOverflow: u8_0,
    pub maxLocal: u16_0,
    pub minLocal: u16_0,
    pub cellOffset: u16_0,
    pub nFree: c_int,
    pub nCell: u16_0,
    pub maskPage: u16_0,
    pub aiOvfl: [u16_0; 4],
    pub apOvfl: [*mut u8_0; 4],
    pub pBt: *mut BtShared,
    pub aData: *mut u8_0,
    pub aDataEnd: *mut u8_0,
    pub aCellIdx: *mut u8_0,
    pub aDataOfst: *mut u8_0,
    pub pDbPage: *mut DbPage,
    pub xCellSize: Option<unsafe extern "C" fn(_: *mut MemPage, _: *mut u8_0) -> u16_0>,
    pub xParseCell: Option<unsafe extern "C" fn(_: *mut MemPage, _: *mut u8_0, _: *mut CellInfo)>,
}

Fields

isInit: u8_0bBusy: u8_0intKey: u8_0intKeyLeaf: u8_0pgno: Pgnoleaf: u8_0hdrOffset: u8_0childPtrSize: u8_0max1bytePayload: u8_0nOverflow: u8_0maxLocal: u16_0minLocal: u16_0cellOffset: u16_0nFree: c_intnCell: u16_0maskPage: u16_0aiOvfl: [u16_0; 4]apOvfl: [*mut u8_0; 4]pBt: *mut BtSharedaData: *mut u8_0aDataEnd: *mut u8_0aCellIdx: *mut u8_0aDataOfst: *mut u8_0pDbPage: *mut DbPagexCellSize: Option<unsafe extern "C" fn(_: *mut MemPage, _: *mut u8_0) -> u16_0>xParseCell: Option<unsafe extern "C" fn(_: *mut MemPage, _: *mut u8_0, _: *mut CellInfo)>

Trait Implementations

impl Clone for MemPage[src]

impl Copy for MemPage[src]

Auto Trait Implementations

impl !RefUnwindSafe for MemPage

impl !Send for MemPage

impl !Sync for MemPage

impl Unpin for MemPage

impl !UnwindSafe for MemPage

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.