pub struct TableOptsBuilder { /* private fields */ }
Expand description
Builder for TableOpts
.
Implementations§
Source§impl TableOptsBuilder
impl TableOptsBuilder
pub fn compact_storage(&mut self, value: bool) -> &mut Self
pub fn clustering_order(&mut self, value: Vec<ColumnOrder>) -> &mut Self
pub fn comment<VALUE: Into<LitStr>>(&mut self, value: VALUE) -> &mut Self
pub fn speculative_retry(&mut self, value: SpeculativeRetry) -> &mut Self
pub fn change_data_capture(&mut self, value: bool) -> &mut Self
pub fn gc_grace_seconds(&mut self, value: i32) -> &mut Self
pub fn bloom_filter_fp_chance(&mut self, value: f32) -> &mut Self
pub fn default_time_to_live(&mut self, value: i32) -> &mut Self
pub fn compaction(&mut self, value: Compaction) -> &mut Self
pub fn compression(&mut self, value: Compression) -> &mut Self
pub fn caching(&mut self, value: Caching) -> &mut Self
pub fn memtable_flush_period_in_ms(&mut self, value: i32) -> &mut Self
pub fn read_repair(&mut self, value: bool) -> &mut Self
Trait Implementations§
Source§impl Clone for TableOptsBuilder
impl Clone for TableOptsBuilder
Source§fn clone(&self) -> TableOptsBuilder
fn clone(&self) -> TableOptsBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for TableOptsBuilder
impl RefUnwindSafe for TableOptsBuilder
impl Send for TableOptsBuilder
impl Sync for TableOptsBuilder
impl Unpin for TableOptsBuilder
impl UnwindSafe for TableOptsBuilder
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