[][src]Struct sqlite3_native::Lookaside

#[repr(C)]pub struct Lookaside {
    pub bDisable: u32_0,
    pub sz: u16_0,
    pub szTrue: u16_0,
    pub bMalloced: u8_0,
    pub nSlot: u32_0,
    pub anStat: [u32_0; 3],
    pub pInit: *mut LookasideSlot,
    pub pFree: *mut LookasideSlot,
    pub pSmallInit: *mut LookasideSlot,
    pub pSmallFree: *mut LookasideSlot,
    pub pMiddle: *mut c_void,
    pub pStart: *mut c_void,
    pub pEnd: *mut c_void,
}

Fields

bDisable: u32_0sz: u16_0szTrue: u16_0bMalloced: u8_0nSlot: u32_0anStat: [u32_0; 3]pInit: *mut LookasideSlotpFree: *mut LookasideSlotpSmallInit: *mut LookasideSlotpSmallFree: *mut LookasideSlotpMiddle: *mut c_voidpStart: *mut c_voidpEnd: *mut c_void

Trait Implementations

impl Clone for Lookaside[src]

impl Copy for Lookaside[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.