PGFunction

Type Alias PGFunction 

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

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.