[][src]Struct postgres_parser::sys::MinMaxExpr

#[repr(C)]pub struct MinMaxExpr {
    pub xpr: Expr,
    pub minmaxtype: Oid,
    pub minmaxcollid: Oid,
    pub inputcollid: Oid,
    pub op: MinMaxOp,
    pub args: *mut List,
    pub location: c_int,
}

Fields

xpr: Exprminmaxtype: Oidminmaxcollid: Oid

common type of arguments and result

inputcollid: Oid

OID of collation of result

op: MinMaxOp

OID of collation that function should use

args: *mut List

function to execute

location: c_int

the arguments

Trait Implementations

impl Debug for MinMaxExpr[src]

impl Default for MinMaxExpr[src]

impl Eq for MinMaxExpr[src]

impl Hash for MinMaxExpr[src]

impl PartialEq<MinMaxExpr> for MinMaxExpr[src]

impl StructuralEq for MinMaxExpr[src]

impl StructuralPartialEq for MinMaxExpr[src]

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, 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.