[][src]Struct sqlite3_native::VdbeSorter

#[repr(C)]pub struct VdbeSorter {
    pub mnPmaSize: c_int,
    pub mxPmaSize: c_int,
    pub mxKeysize: c_int,
    pub pgsz: c_int,
    pub pReader: *mut PmaReader,
    pub pMerger: *mut MergeEngine,
    pub db: *mut sqlite3,
    pub pKeyInfo: *mut KeyInfo,
    pub pUnpacked: *mut UnpackedRecord,
    pub list: SorterList,
    pub iMemory: c_int,
    pub nMemory: c_int,
    pub bUsePMA: u8_0,
    pub bUseThreads: u8_0,
    pub iPrev: u8_0,
    pub nTask: u8_0,
    pub typeMask: u8_0,
    pub aTask: [SortSubtask; 1],
}

Fields

mnPmaSize: c_intmxPmaSize: c_intmxKeysize: c_intpgsz: c_intpReader: *mut PmaReaderpMerger: *mut MergeEnginedb: *mut sqlite3pKeyInfo: *mut KeyInfopUnpacked: *mut UnpackedRecordlist: SorterListiMemory: c_intnMemory: c_intbUsePMA: u8_0bUseThreads: u8_0iPrev: u8_0nTask: u8_0typeMask: u8_0aTask: [SortSubtask; 1]

Trait Implementations

impl Clone for VdbeSorter[src]

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