[][src]Struct sqlite3_native::Btree

#[repr(C)]pub struct Btree {
    pub db: *mut sqlite3,
    pub pBt: *mut BtShared,
    pub inTrans: u8_0,
    pub sharable: u8_0,
    pub locked: u8_0,
    pub hasIncrblobCur: u8_0,
    pub wantToLock: c_int,
    pub nBackup: c_int,
    pub iDataVersion: u32_0,
    pub pNext: *mut Btree,
    pub pPrev: *mut Btree,
    pub lock: BtLock,
}

Fields

db: *mut sqlite3pBt: *mut BtSharedinTrans: u8_0sharable: u8_0locked: u8_0hasIncrblobCur: u8_0wantToLock: c_intnBackup: c_intiDataVersion: u32_0pNext: *mut BtreepPrev: *mut Btreelock: BtLock

Trait Implementations

impl Clone for Btree[src]

impl Copy for Btree[src]

Auto Trait Implementations

impl !RefUnwindSafe for Btree

impl !Send for Btree

impl !Sync for Btree

impl Unpin for Btree

impl !UnwindSafe for Btree

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.