[][src]Struct sqlite3_native::SrcList_item

#[repr(C)]pub struct SrcList_item {
    pub pSchema: *mut Schema,
    pub zDatabase: *mut c_char,
    pub zName: *mut c_char,
    pub zAlias: *mut c_char,
    pub pTab: *mut Table,
    pub pSelect: *mut Select,
    pub addrFillSub: c_int,
    pub regReturn: c_int,
    pub regResult: c_int,
    pub fg: C2RustUnnamed_10,
    pub iCursor: c_int,
    pub pOn: *mut Expr,
    pub pUsing: *mut IdList,
    pub colUsed: Bitmask,
    pub u1: C2RustUnnamed_9,
    pub pIBIndex: *mut Index,
}

Fields

pSchema: *mut SchemazDatabase: *mut c_charzName: *mut c_charzAlias: *mut c_charpTab: *mut TablepSelect: *mut SelectaddrFillSub: c_intregReturn: c_intregResult: c_intfg: C2RustUnnamed_10iCursor: c_intpOn: *mut ExprpUsing: *mut IdListcolUsed: Bitmasku1: C2RustUnnamed_9pIBIndex: *mut Index

Trait Implementations

impl Clone for SrcList_item[src]

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