[][src]Struct sqlite3_native::VTable

#[repr(C)]pub struct VTable {
    pub db: *mut sqlite3,
    pub pMod: *mut Module,
    pub pVtab: *mut sqlite3_vtab,
    pub nRef: c_int,
    pub bConstraint: u8_0,
    pub eVtabRisk: u8_0,
    pub iSavepoint: c_int,
    pub pNext: *mut VTable,
}

Fields

db: *mut sqlite3pMod: *mut ModulepVtab: *mut sqlite3_vtabnRef: c_intbConstraint: u8_0eVtabRisk: u8_0iSavepoint: c_intpNext: *mut VTable

Trait Implementations

impl Clone for VTable[src]

impl Copy for VTable[src]

Auto Trait Implementations

impl !RefUnwindSafe for VTable

impl !Send for VTable

impl !Sync for VTable

impl Unpin for VTable

impl !UnwindSafe for VTable

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.