Struct pgx_pg_sys::Agg[][src]

#[repr(C)]
pub struct Agg { pub plan: Plan, pub aggstrategy: AggStrategy, pub aggsplit: AggSplit, pub numCols: c_int, pub grpColIdx: *mut AttrNumber, pub grpOperators: *mut Oid, pub grpCollations: *mut Oid, pub numGroups: c_long, pub transitionSpace: uint64, pub aggParams: *mut Bitmapset, pub groupingSets: *mut List, pub chain: *mut List, }

Fields

plan: Planaggstrategy: AggStrategyaggsplit: AggSplitnumCols: c_intgrpColIdx: *mut AttrNumbergrpOperators: *mut OidgrpCollations: *mut OidnumGroups: c_longtransitionSpace: uint64aggParams: *mut BitmapsetgroupingSets: *mut Listchain: *mut List

Trait Implementations

impl Clone for Agg[src]

impl Copy for Agg[src]

impl Debug for Agg[src]

impl Default for Agg[src]

impl Display for Agg[src]

impl PgNode for Agg[src]

type NodeType = Agg

Auto Trait Implementations

impl RefUnwindSafe for Agg

impl !Send for Agg

impl !Sync for Agg

impl Unpin for Agg

impl UnwindSafe for Agg

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.