[][src]Struct sqlite3_native::Window

#[repr(C)]pub struct Window {
    pub zName: *mut c_char,
    pub zBase: *mut c_char,
    pub pPartition: *mut ExprList,
    pub pOrderBy: *mut ExprList,
    pub eFrmType: u8_0,
    pub eStart: u8_0,
    pub eEnd: u8_0,
    pub bImplicitFrame: u8_0,
    pub eExclude: u8_0,
    pub pStart: *mut Expr,
    pub pEnd: *mut Expr,
    pub ppThis: *mut *mut Window,
    pub pNextWin: *mut Window,
    pub pFilter: *mut Expr,
    pub pFunc: *mut FuncDef,
    pub iEphCsr: c_int,
    pub regAccum: c_int,
    pub regResult: c_int,
    pub csrApp: c_int,
    pub regApp: c_int,
    pub regPart: c_int,
    pub pOwner: *mut Expr,
    pub nBufferCol: c_int,
    pub iArgCol: c_int,
    pub regOne: c_int,
    pub regStartRowid: c_int,
    pub regEndRowid: c_int,
    pub bExprArgs: u8_0,
}

Fields

zName: *mut c_charzBase: *mut c_charpPartition: *mut ExprListpOrderBy: *mut ExprListeFrmType: u8_0eStart: u8_0eEnd: u8_0bImplicitFrame: u8_0eExclude: u8_0pStart: *mut ExprpEnd: *mut ExprppThis: *mut *mut WindowpNextWin: *mut WindowpFilter: *mut ExprpFunc: *mut FuncDefiEphCsr: c_intregAccum: c_intregResult: c_intcsrApp: c_intregApp: c_intregPart: c_intpOwner: *mut ExprnBufferCol: c_intiArgCol: c_intregOne: c_intregStartRowid: c_intregEndRowid: c_intbExprArgs: u8_0

Trait Implementations

impl Clone for Window[src]

impl Copy for Window[src]

Auto Trait Implementations

impl !RefUnwindSafe for Window

impl !Send for Window

impl !Sync for Window

impl Unpin for Window

impl !UnwindSafe for Window

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.