[][src]Struct sqlite3_native::AggInfo

#[repr(C)]pub struct AggInfo {
    pub directMode: u8_0,
    pub useSortingIdx: u8_0,
    pub sortingIdx: c_int,
    pub sortingIdxPTab: c_int,
    pub nSortingColumn: c_int,
    pub mnReg: c_int,
    pub mxReg: c_int,
    pub pGroupBy: *mut ExprList,
    pub aCol: *mut AggInfo_col,
    pub nColumn: c_int,
    pub nAccumulator: c_int,
    pub aFunc: *mut AggInfo_func,
    pub nFunc: c_int,
    pub pNext: *mut AggInfo,
}

Fields

directMode: u8_0useSortingIdx: u8_0sortingIdx: c_intsortingIdxPTab: c_intnSortingColumn: c_intmnReg: c_intmxReg: c_intpGroupBy: *mut ExprListaCol: *mut AggInfo_colnColumn: c_intnAccumulator: c_intaFunc: *mut AggInfo_funcnFunc: c_intpNext: *mut AggInfo

Trait Implementations

impl Clone for AggInfo[src]

impl Copy for AggInfo[src]

Auto Trait Implementations

impl !RefUnwindSafe for AggInfo

impl !Send for AggInfo

impl !Sync for AggInfo

impl Unpin for AggInfo

impl !UnwindSafe for AggInfo

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.