#[repr(C)]
pub struct MemoizeState {
Show 20 fields pub ss: ScanState, pub mstatus: c_int, pub nkeys: c_int, pub hashtable: *mut memoize_hash, pub hashkeydesc: TupleDesc, pub tableslot: *mut TupleTableSlot, pub probeslot: *mut TupleTableSlot, pub cache_eq_expr: *mut ExprState, pub param_exprs: *mut *mut ExprState, pub hashfunctions: *mut FmgrInfo, pub collations: *mut Oid, pub mem_used: uint64, pub mem_limit: uint64, pub tableContext: MemoryContext, pub lru_list: dlist_head, pub last_tuple: *mut MemoizeTuple, pub entry: *mut MemoizeEntry, pub singlerow: bool, pub stats: MemoizeInstrumentation, pub shared_info: *mut SharedMemoizeInfo,
}

Fields

ss: ScanStatemstatus: c_intnkeys: c_inthashtable: *mut memoize_hashhashkeydesc: TupleDesctableslot: *mut TupleTableSlotprobeslot: *mut TupleTableSlotcache_eq_expr: *mut ExprStateparam_exprs: *mut *mut ExprStatehashfunctions: *mut FmgrInfocollations: *mut Oidmem_used: uint64mem_limit: uint64tableContext: MemoryContextlru_list: dlist_headlast_tuple: *mut MemoizeTupleentry: *mut MemoizeEntrysinglerow: boolstats: MemoizeInstrumentationshared_info: *mut SharedMemoizeInfo

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Represent this node as a mutable pointer of its type

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.