[][src]Struct sqlite3_native::WhereTerm

#[repr(C)]pub struct WhereTerm {
    pub pExpr: *mut Expr,
    pub pWC: *mut WhereClause,
    pub truthProb: LogEst,
    pub wtFlags: u16_0,
    pub eOperator: u16_0,
    pub nChild: u8_0,
    pub eMatchOp: u8_0,
    pub iParent: c_int,
    pub leftCursor: c_int,
    pub iField: c_int,
    pub u: C2RustUnnamed_12,
    pub prereqRight: Bitmask,
    pub prereqAll: Bitmask,
}

Fields

pExpr: *mut ExprpWC: *mut WhereClausetruthProb: LogEstwtFlags: u16_0eOperator: u16_0nChild: u8_0eMatchOp: u8_0iParent: c_intleftCursor: c_intiField: c_intu: C2RustUnnamed_12prereqRight: BitmaskprereqAll: Bitmask

Trait Implementations

impl Clone for WhereTerm[src]

impl Copy for WhereTerm[src]

Auto Trait Implementations

impl !RefUnwindSafe for WhereTerm

impl !Send for WhereTerm

impl !Sync for WhereTerm

impl Unpin for WhereTerm

impl !UnwindSafe for WhereTerm

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.