[][src]Struct sqlite3_native::Table

#[repr(C)]pub struct Table {
    pub zName: *mut c_char,
    pub aCol: *mut Column,
    pub pIndex: *mut Index,
    pub pSelect: *mut Select,
    pub pFKey: *mut FKey,
    pub zColAff: *mut c_char,
    pub pCheck: *mut ExprList,
    pub tnum: c_int,
    pub nTabRef: u32_0,
    pub tabFlags: u32_0,
    pub iPKey: i16_0,
    pub nCol: i16_0,
    pub nNVCol: i16_0,
    pub nRowLogEst: LogEst,
    pub szTabRow: LogEst,
    pub keyConf: u8_0,
    pub addColOffset: c_int,
    pub nModuleArg: c_int,
    pub azModuleArg: *mut *mut c_char,
    pub pVTable: *mut VTable,
    pub pTrigger: *mut Trigger,
    pub pSchema: *mut Schema,
    pub pNextZombie: *mut Table,
}

Fields

zName: *mut c_charaCol: *mut ColumnpIndex: *mut IndexpSelect: *mut SelectpFKey: *mut FKeyzColAff: *mut c_charpCheck: *mut ExprListtnum: c_intnTabRef: u32_0tabFlags: u32_0iPKey: i16_0nCol: i16_0nNVCol: i16_0nRowLogEst: LogEstszTabRow: LogEstkeyConf: u8_0addColOffset: c_intnModuleArg: c_intazModuleArg: *mut *mut c_charpVTable: *mut VTablepTrigger: *mut TriggerpSchema: *mut SchemapNextZombie: *mut Table

Trait Implementations

impl Clone for Table[src]

impl Copy for Table[src]

Auto Trait Implementations

impl !RefUnwindSafe for Table

impl !Send for Table

impl !Sync for Table

impl Unpin for Table

impl !UnwindSafe for Table

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.