[][src]Struct sqlite3_native::Select

#[repr(C)]pub struct Select {
    pub op: u8_0,
    pub nSelectRow: LogEst,
    pub selFlags: u32_0,
    pub iLimit: c_int,
    pub iOffset: c_int,
    pub selId: u32_0,
    pub addrOpenEphm: [c_int; 2],
    pub pEList: *mut ExprList,
    pub pSrc: *mut SrcList,
    pub pWhere: *mut Expr,
    pub pGroupBy: *mut ExprList,
    pub pHaving: *mut Expr,
    pub pOrderBy: *mut ExprList,
    pub pPrior: *mut Select,
    pub pNext: *mut Select,
    pub pLimit: *mut Expr,
    pub pWith: *mut With,
    pub pWin: *mut Window,
    pub pWinDefn: *mut Window,
}

Fields

op: u8_0nSelectRow: LogEstselFlags: u32_0iLimit: c_intiOffset: c_intselId: u32_0addrOpenEphm: [c_int; 2]pEList: *mut ExprListpSrc: *mut SrcListpWhere: *mut ExprpGroupBy: *mut ExprListpHaving: *mut ExprpOrderBy: *mut ExprListpPrior: *mut SelectpNext: *mut SelectpLimit: *mut ExprpWith: *mut WithpWin: *mut WindowpWinDefn: *mut Window

Trait Implementations

impl Clone for Select[src]

impl Copy for Select[src]

Auto Trait Implementations

impl !RefUnwindSafe for Select

impl !Send for Select

impl !Sync for Select

impl Unpin for Select

impl !UnwindSafe for Select

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.