#[repr(C)]
pub struct sqlite3_index_info { pub nConstraint: c_int, pub aConstraint: *mut sqlite3_index_info_sqlite3_index_constraint, pub nOrderBy: c_int, pub aOrderBy: *mut sqlite3_index_info_sqlite3_index_orderby, pub aConstraintUsage: *mut sqlite3_index_info_sqlite3_index_constraint_usage, pub idxNum: c_int, pub idxStr: *mut c_char, pub needToFreeIdxStr: c_int, pub orderByConsumed: c_int, pub estimatedCost: f64, }

Fields

nConstraint: c_intaConstraint: *mut sqlite3_index_info_sqlite3_index_constraintnOrderBy: c_intaOrderBy: *mut sqlite3_index_info_sqlite3_index_orderbyaConstraintUsage: *mut sqlite3_index_info_sqlite3_index_constraint_usageidxNum: c_intidxStr: *mut c_charneedToFreeIdxStr: c_intorderByConsumed: c_intestimatedCost: f64

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. 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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.