[][src]Struct pgx_pg_sys::FmgrInfo

#[repr(C)]pub struct FmgrInfo {
    pub fn_addr: PGFunction,
    pub fn_oid: Oid,
    pub fn_nargs: c_short,
    pub fn_strict: bool,
    pub fn_retset: bool,
    pub fn_stats: c_uchar,
    pub fn_extra: *mut c_void,
    pub fn_mcxt: MemoryContext,
    pub fn_expr: fmNodePtr,
}

Fields

fn_addr: PGFunctionfn_oid: Oidfn_nargs: c_shortfn_strict: boolfn_retset: boolfn_stats: c_ucharfn_extra: *mut c_voidfn_mcxt: MemoryContextfn_expr: fmNodePtr

Trait Implementations

impl Clone for FmgrInfo[src]

impl Copy for FmgrInfo[src]

impl Debug for FmgrInfo[src]

impl Default for FmgrInfo[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> 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.