[][src]Struct pgx_pg_sys::Aggref

#[repr(C)]pub struct Aggref {
    pub xpr: Expr,
    pub aggfnoid: Oid,
    pub aggtype: Oid,
    pub aggcollid: Oid,
    pub inputcollid: Oid,
    pub aggtranstype: Oid,
    pub aggargtypes: *mut List,
    pub aggdirectargs: *mut List,
    pub args: *mut List,
    pub aggorder: *mut List,
    pub aggdistinct: *mut List,
    pub aggfilter: *mut Expr,
    pub aggstar: bool,
    pub aggvariadic: bool,
    pub aggkind: c_char,
    pub agglevelsup: Index,
    pub aggsplit: AggSplit,
    pub location: c_int,
}

Fields

xpr: Expraggfnoid: Oidaggtype: Oidaggcollid: Oidinputcollid: Oidaggtranstype: Oidaggargtypes: *mut Listaggdirectargs: *mut Listargs: *mut Listaggorder: *mut Listaggdistinct: *mut Listaggfilter: *mut Expraggstar: boolaggvariadic: boolaggkind: c_charagglevelsup: Indexaggsplit: AggSplitlocation: c_int

Trait Implementations

impl Clone for Aggref[src]

impl Copy for Aggref[src]

impl Debug for Aggref[src]

impl Default for Aggref[src]

impl Display for Aggref[src]

impl PgNode for Aggref[src]

type NodeType = Aggref

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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.