[][src]Struct sqlite3_native::Upsert

#[repr(C)]pub struct Upsert {
    pub pUpsertTarget: *mut ExprList,
    pub pUpsertTargetWhere: *mut Expr,
    pub pUpsertSet: *mut ExprList,
    pub pUpsertWhere: *mut Expr,
    pub pUpsertIdx: *mut Index,
    pub pUpsertSrc: *mut SrcList,
    pub regData: c_int,
    pub iDataCur: c_int,
    pub iIdxCur: c_int,
}

Fields

pUpsertTarget: *mut ExprListpUpsertTargetWhere: *mut ExprpUpsertSet: *mut ExprListpUpsertWhere: *mut ExprpUpsertIdx: *mut IndexpUpsertSrc: *mut SrcListregData: c_intiDataCur: c_intiIdxCur: c_int

Trait Implementations

impl Clone for Upsert[src]

impl Copy for Upsert[src]

Auto Trait Implementations

impl !RefUnwindSafe for Upsert

impl !Send for Upsert

impl !Sync for Upsert

impl Unpin for Upsert

impl !UnwindSafe for Upsert

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.