#[repr(C)]
pub struct sqlite3_index_info {
Show 13 fields pub nConstraint: i32, pub aConstraint: *mut sqlite3_index_info_0, pub nOrderBy: i32, pub aOrderBy: *mut sqlite3_index_info_2, pub aConstraintUsage: *mut sqlite3_index_info_1, pub idxNum: i32, pub idxStr: PSTR, pub needToFreeIdxStr: i32, pub orderByConsumed: i32, pub estimatedCost: f64, pub estimatedRows: i64, pub idxFlags: i32, pub colUsed: u64,
}
Expand description

Required features: "Win32_System_SqlLite"

Fields

nConstraint: i32aConstraint: *mut sqlite3_index_info_0nOrderBy: i32aOrderBy: *mut sqlite3_index_info_2aConstraintUsage: *mut sqlite3_index_info_1idxNum: i32idxStr: PSTRneedToFreeIdxStr: i32orderByConsumed: i32estimatedCost: f64estimatedRows: i64idxFlags: i32colUsed: u64

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.