#[repr(C)]pub struct FuncCallContext {
pub call_cntr: uint64,
pub max_calls: uint64,
pub user_fctx: *mut c_void,
pub attinmeta: *mut AttInMetadata,
pub multi_call_memory_ctx: MemoryContext,
pub tuple_desc: TupleDesc,
}Fields§
§call_cntr: uint64§max_calls: uint64§user_fctx: *mut c_void§attinmeta: *mut AttInMetadata§multi_call_memory_ctx: MemoryContext§tuple_desc: TupleDescTrait Implementations§
Source§impl Clone for FuncCallContext
impl Clone for FuncCallContext
Source§fn clone(&self) -> FuncCallContext
fn clone(&self) -> FuncCallContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FuncCallContext
Source§impl Debug for FuncCallContext
impl Debug for FuncCallContext
Auto Trait Implementations§
impl !Send for FuncCallContext
impl !Sync for FuncCallContext
impl Freeze for FuncCallContext
impl RefUnwindSafe for FuncCallContext
impl Unpin for FuncCallContext
impl UnsafeUnpin for FuncCallContext
impl UnwindSafe for FuncCallContext
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