[][src]Struct sqlite3_native::VdbeFrame

#[repr(C)]pub struct VdbeFrame {
    pub v: *mut Vdbe,
    pub pParent: *mut VdbeFrame,
    pub aOp: *mut Op,
    pub anExec: *mut i64_0,
    pub aMem: *mut Mem,
    pub apCsr: *mut *mut VdbeCursor,
    pub aOnce: *mut u8_0,
    pub token: *mut c_void,
    pub lastRowid: i64_0,
    pub pAuxData: *mut AuxData,
    pub nCursor: c_int,
    pub pc: c_int,
    pub nOp: c_int,
    pub nMem: c_int,
    pub nChildMem: c_int,
    pub nChildCsr: c_int,
    pub nChange: c_int,
    pub nDbChange: c_int,
}

Fields

v: *mut VdbepParent: *mut VdbeFrameaOp: *mut OpanExec: *mut i64_0aMem: *mut MemapCsr: *mut *mut VdbeCursoraOnce: *mut u8_0token: *mut c_voidlastRowid: i64_0pAuxData: *mut AuxDatanCursor: c_intpc: c_intnOp: c_intnMem: c_intnChildMem: c_intnChildCsr: c_intnChange: c_intnDbChange: c_int

Trait Implementations

impl Clone for VdbeFrame[src]

impl Copy for VdbeFrame[src]

Auto Trait Implementations

impl !RefUnwindSafe for VdbeFrame

impl !Send for VdbeFrame

impl !Sync for VdbeFrame

impl Unpin for VdbeFrame

impl !UnwindSafe for VdbeFrame

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.