[][src]Struct sqlite3_native::BtreePayload

#[repr(C)]pub struct BtreePayload {
    pub pKey: *const c_void,
    pub nKey: sqlite3_int64,
    pub pData: *const c_void,
    pub aMem: *mut sqlite3_value,
    pub nMem: u16_0,
    pub nData: c_int,
    pub nZero: c_int,
}

Fields

pKey: *const c_voidnKey: sqlite3_int64pData: *const c_voidaMem: *mut sqlite3_valuenMem: u16_0nData: c_intnZero: c_int

Trait Implementations

impl Clone for BtreePayload[src]

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