pub struct TableOptimizationHints {
pub pre_allocate: Option<usize>,
pub array_like: bool,
pub stable_keys: bool,
pub native_buffer_type: Option<String>,
pub table_reuse: bool,
}
Expand description
Table optimization hints
Fields§
§pre_allocate: Option<usize>
§array_like: bool
§stable_keys: bool
§native_buffer_type: Option<String>
§table_reuse: bool
Trait Implementations§
Source§impl Clone for TableOptimizationHints
impl Clone for TableOptimizationHints
Source§fn clone(&self) -> TableOptimizationHints
fn clone(&self) -> TableOptimizationHints
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TableOptimizationHints
impl Debug for TableOptimizationHints
Source§impl Default for TableOptimizationHints
impl Default for TableOptimizationHints
Source§fn default() -> TableOptimizationHints
fn default() -> TableOptimizationHints
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableOptimizationHints
impl RefUnwindSafe for TableOptimizationHints
impl Send for TableOptimizationHints
impl Sync for TableOptimizationHints
impl Unpin for TableOptimizationHints
impl UnwindSafe for TableOptimizationHints
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