[][src]Struct pgx_pg_sys::ParamListInfoData

#[repr(C)]pub struct ParamListInfoData {
    pub paramFetch: ParamFetchHook,
    pub paramFetchArg: *mut c_void,
    pub paramCompile: ParamCompileHook,
    pub paramCompileArg: *mut c_void,
    pub parserSetup: ParserSetupHook,
    pub parserSetupArg: *mut c_void,
    pub paramValuesStr: *mut c_char,
    pub numParams: c_int,
    pub params: __IncompleteArrayField<ParamExternData>,
}

Fields

paramFetch: ParamFetchHookparamFetchArg: *mut c_voidparamCompile: ParamCompileHookparamCompileArg: *mut c_voidparserSetup: ParserSetupHookparserSetupArg: *mut c_voidparamValuesStr: *mut c_charnumParams: c_intparams: __IncompleteArrayField<ParamExternData>

Trait Implementations

impl Debug for ParamListInfoData[src]

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