[][src]Struct sqlite3_native::BtCursor

#[repr(C)]pub struct BtCursor {
    pub eState: u8_0,
    pub curFlags: u8_0,
    pub curPagerFlags: u8_0,
    pub hints: u8_0,
    pub skipNext: c_int,
    pub pBtree: *mut Btree,
    pub aOverflow: *mut Pgno,
    pub pKey: *mut c_void,
    pub pBt: *mut BtShared,
    pub pNext: *mut BtCursor,
    pub info: CellInfo,
    pub nKey: i64_0,
    pub pgnoRoot: Pgno,
    pub iPage: i8_0,
    pub curIntKey: u8_0,
    pub ix: u16_0,
    pub aiIdx: [u16_0; 19],
    pub pKeyInfo: *mut KeyInfo,
    pub pPage: *mut MemPage,
    pub apPage: [*mut MemPage; 19],
}

Fields

eState: u8_0curFlags: u8_0curPagerFlags: u8_0hints: u8_0skipNext: c_intpBtree: *mut BtreeaOverflow: *mut PgnopKey: *mut c_voidpBt: *mut BtSharedpNext: *mut BtCursorinfo: CellInfonKey: i64_0pgnoRoot: PgnoiPage: i8_0curIntKey: u8_0ix: u16_0aiIdx: [u16_0; 19]pKeyInfo: *mut KeyInfopPage: *mut MemPageapPage: [*mut MemPage; 19]

Trait Implementations

impl Clone for BtCursor[src]

impl Copy for BtCursor[src]

Auto Trait Implementations

impl !RefUnwindSafe for BtCursor

impl !Send for BtCursor

impl !Sync for BtCursor

impl Unpin for BtCursor

impl !UnwindSafe for BtCursor

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.