Type Alias pgrx_pg_sys::PGFunction

source ·
pub type PGFunction = Option<unsafe extern "C" fn(fcinfo: FunctionCallInfo) -> Datum>;

Aliased Type§

enum PGFunction {
    None,
    Some(unsafe extern "C" fn(_: *mut FunctionCallInfoBaseData) -> Datum),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut FunctionCallInfoBaseData) -> Datum)

Some value of type T.