#[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: PGFunction§fn_oid: Oid§fn_nargs: c_short§fn_strict: bool§fn_retset: bool§fn_stats: c_uchar§fn_extra: *mut c_void§fn_mcxt: MemoryContext§fn_expr: fmNodePtrTrait Implementations§
Auto Trait Implementations§
impl !Send for FmgrInfo
impl !Sync for FmgrInfo
impl Freeze for FmgrInfo
impl RefUnwindSafe for FmgrInfo
impl Unpin for FmgrInfo
impl UnsafeUnpin for FmgrInfo
impl UnwindSafe for FmgrInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more