[][src]Struct sqlite3_native::WhereInfo

#[repr(C)]pub struct WhereInfo {
    pub pParse: *mut Parse,
    pub pTabList: *mut SrcList,
    pub pOrderBy: *mut ExprList,
    pub pResultSet: *mut ExprList,
    pub pWhere: *mut Expr,
    pub aiCurOnePass: [c_int; 2],
    pub iContinue: c_int,
    pub iBreak: c_int,
    pub savedNQueryLoop: c_int,
    pub wctrlFlags: u16_0,
    pub iLimit: LogEst,
    pub nLevel: u8_0,
    pub nOBSat: i8_0,
    pub eOnePass: u8_0,
    pub eDistinct: u8_0,
    pub bDeferredSeek_untestedTerms_bOrderedInnerLoop_sorted: [u8; 1],
    pub c2rust_padding: [u8; 1],
    pub nRowOut: LogEst,
    pub iTop: c_int,
    pub pLoops: *mut WhereLoop,
    pub pExprMods: *mut WhereExprMod,
    pub revMask: Bitmask,
    pub sWC: WhereClause,
    pub sMaskSet: WhereMaskSet,
    pub a: [WhereLevel; 1],
}

Fields

pParse: *mut ParsepTabList: *mut SrcListpOrderBy: *mut ExprListpResultSet: *mut ExprListpWhere: *mut ExpraiCurOnePass: [c_int; 2]iContinue: c_intiBreak: c_intsavedNQueryLoop: c_intwctrlFlags: u16_0iLimit: LogEstnLevel: u8_0nOBSat: i8_0eOnePass: u8_0eDistinct: u8_0bDeferredSeek_untestedTerms_bOrderedInnerLoop_sorted: [u8; 1]c2rust_padding: [u8; 1]nRowOut: LogEstiTop: c_intpLoops: *mut WhereLooppExprMods: *mut WhereExprModrevMask: BitmasksWC: WhereClausesMaskSet: WhereMaskSeta: [WhereLevel; 1]

Implementations

impl WhereInfo[src]

pub fn set_bDeferredSeek(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bDeferredSeek(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_untestedTerms(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn untestedTerms(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_bOrderedInnerLoop(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bOrderedInnerLoop(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_sorted(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn sorted(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

Trait Implementations

impl Clone for WhereInfo[src]

impl Copy for WhereInfo[src]

Auto Trait Implementations

impl !RefUnwindSafe for WhereInfo

impl !Send for WhereInfo

impl !Sync for WhereInfo

impl Unpin for WhereInfo

impl !UnwindSafe for WhereInfo

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.