[][src]Struct postgres_parser::sys::FuncExpr

#[repr(C)]pub struct FuncExpr {
    pub xpr: Expr,
    pub funcid: Oid,
    pub funcresulttype: Oid,
    pub funcretset: bool,
    pub funcvariadic: bool,
    pub funcformat: CoercionForm,
    pub funccollid: Oid,
    pub inputcollid: Oid,
    pub args: *mut List,
    pub location: c_int,
}

FuncExpr expression node for a function call

Fields

xpr: Exprfuncid: Oidfuncresulttype: Oid

PG_PROC OID of the function

funcretset: bool

PG_TYPE OID of result value

funcvariadic: bool

true if function returns set

funcformat: CoercionForm

true if variadic arguments have been combined into an array last argument

funccollid: Oid

how to display this function call

inputcollid: Oid

OID of collation of result

args: *mut List

OID of collation that function should use

location: c_int

arguments to the function

Trait Implementations

impl Debug for FuncExpr[src]

impl Default for FuncExpr[src]

impl Eq for FuncExpr[src]

impl Hash for FuncExpr[src]

impl PartialEq<FuncExpr> for FuncExpr[src]

impl StructuralEq for FuncExpr[src]

impl StructuralPartialEq for FuncExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for FuncExpr

impl !Send for FuncExpr

impl !Sync for FuncExpr

impl Unpin for FuncExpr

impl UnwindSafe for FuncExpr

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.