[]Struct c3p0_pool_sqlite::rusqlite::ffi::sqlite3_index_info

#[repr(C)]
pub struct sqlite3_index_info {
    pub nConstraint: i32,
    pub aConstraint: *mut sqlite3_index_info_sqlite3_index_constraint,
    pub nOrderBy: i32,
    pub aOrderBy: *mut sqlite3_index_info_sqlite3_index_orderby,
    pub aConstraintUsage: *mut sqlite3_index_info_sqlite3_index_constraint_usage,
    pub idxNum: i32,
    pub idxStr: *mut i8,
    pub needToFreeIdxStr: i32,
    pub orderByConsumed: i32,
    pub estimatedCost: f64,
    pub estimatedRows: i64,
    pub idxFlags: i32,
    pub colUsed: u64,
}

Fields

nConstraint: i32aConstraint: *mut sqlite3_index_info_sqlite3_index_constraintnOrderBy: i32aOrderBy: *mut sqlite3_index_info_sqlite3_index_orderbyaConstraintUsage: *mut sqlite3_index_info_sqlite3_index_constraint_usageidxNum: i32idxStr: *mut i8needToFreeIdxStr: i32orderByConsumed: i32estimatedCost: f64estimatedRows: i64idxFlags: i32colUsed: u64

Trait Implementations

impl Debug for sqlite3_index_info

impl Clone for sqlite3_index_info

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for sqlite3_index_info

Auto Trait Implementations

Blanket Implementations

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]