#[repr(C)]
pub struct MemoizeState {
Show 22 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 binary_mode: bool, pub stats: MemoizeInstrumentation, pub shared_info: *mut SharedMemoizeInfo, pub keyparamids: *mut Bitmapset,
}

Fields§

§ss: ScanState§mstatus: c_int§nkeys: c_int§hashtable: *mut memoize_hash§hashkeydesc: TupleDesc§tableslot: *mut TupleTableSlot§probeslot: *mut TupleTableSlot§cache_eq_expr: *mut ExprState§param_exprs: *mut *mut ExprState§hashfunctions: *mut FmgrInfo§collations: *mut Oid§mem_used: uint64§mem_limit: uint64§tableContext: MemoryContext§lru_list: dlist_head§last_tuple: *mut MemoizeTuple§entry: *mut MemoizeEntry§singlerow: bool§binary_mode: bool§stats: MemoizeInstrumentation§shared_info: *mut SharedMemoizeInfo§keyparamids: *mut Bitmapset

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
Format this node Read more

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

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more