[][src]Struct sqlite3_native::Index

#[repr(C)]pub struct Index {
    pub zName: *mut c_char,
    pub aiColumn: *mut i16_0,
    pub aiRowLogEst: *mut LogEst,
    pub pTable: *mut Table,
    pub zColAff: *mut c_char,
    pub pNext: *mut Index,
    pub pSchema: *mut Schema,
    pub aSortOrder: *mut u8_0,
    pub azColl: *mut *const c_char,
    pub pPartIdxWhere: *mut Expr,
    pub aColExpr: *mut ExprList,
    pub tnum: c_int,
    pub szIdxRow: LogEst,
    pub nKeyCol: u16_0,
    pub nColumn: u16_0,
    pub onError: u8_0,
    pub idxType_bUnordered_uniqNotNull_isResized_isCovering_noSkipScan_hasStat1_bNoQuery_bAscKeyBug_bHasVCol: [u8; 2],
    pub c2rust_padding: [u8; 3],
    pub colNotIdxed: Bitmask,
}

Fields

zName: *mut c_charaiColumn: *mut i16_0aiRowLogEst: *mut LogEstpTable: *mut TablezColAff: *mut c_charpNext: *mut IndexpSchema: *mut SchemaaSortOrder: *mut u8_0azColl: *mut *const c_charpPartIdxWhere: *mut ExpraColExpr: *mut ExprListtnum: c_intszIdxRow: LogEstnKeyCol: u16_0nColumn: u16_0onError: u8_0idxType_bUnordered_uniqNotNull_isResized_isCovering_noSkipScan_hasStat1_bNoQuery_bAscKeyBug_bHasVCol: [u8; 2]c2rust_padding: [u8; 3]colNotIdxed: Bitmask

Implementations

impl Index[src]

pub fn set_idxType(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn idxType(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_bUnordered(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bUnordered(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_uniqNotNull(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn uniqNotNull(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_isResized(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn isResized(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_isCovering(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn isCovering(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_noSkipScan(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn noSkipScan(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_hasStat1(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn hasStat1(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_bNoQuery(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bNoQuery(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_bAscKeyBug(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bAscKeyBug(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

pub fn set_bHasVCol(&mut self, int: c_uint)[src]

This method allows you to write to a bitfield with a value

pub fn bHasVCol(&self) -> c_uint[src]

This method allows you to read from a bitfield to a value

Trait Implementations

impl Clone for Index[src]

impl Copy for Index[src]

Auto Trait Implementations

impl !RefUnwindSafe for Index

impl !Send for Index

impl !Sync for Index

impl Unpin for Index

impl !UnwindSafe for Index

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.