[][src]Union sqlite3_native::p4union

#[repr(C)]pub union p4union {
    pub i: c_int,
    pub p: *mut c_void,
    pub z: *mut c_char,
    pub pI64: *mut i64_0,
    pub pReal: *mut c_double,
    pub pFunc: *mut FuncDef,
    pub pCtx: *mut sqlite3_context,
    pub pColl: *mut CollSeq,
    pub pMem: *mut Mem,
    pub pVtab: *mut VTable,
    pub pKeyInfo: *mut KeyInfo,
    pub ai: *mut c_int,
    pub pProgram: *mut SubProgram,
    pub pTab: *mut Table,
    pub xAdvance: Option<unsafe extern "C" fn(_: *mut BtCursor, _: c_int) -> c_int>,
}

Fields

i: c_intp: *mut c_voidz: *mut c_charpI64: *mut i64_0pReal: *mut c_doublepFunc: *mut FuncDefpCtx: *mut sqlite3_contextpColl: *mut CollSeqpMem: *mut MempVtab: *mut VTablepKeyInfo: *mut KeyInfoai: *mut c_intpProgram: *mut SubProgrampTab: *mut TablexAdvance: Option<unsafe extern "C" fn(_: *mut BtCursor, _: c_int) -> c_int>

Trait Implementations

impl Clone for p4union[src]

impl Copy for p4union[src]

Auto Trait Implementations

impl !RefUnwindSafe for p4union

impl !Send for p4union

impl !Sync for p4union

impl Unpin for p4union

impl !UnwindSafe for p4union

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.