Struct scylladb_parse::TableOpts
source · [−]pub struct TableOpts {Show 13 fields
pub compact_storage: bool,
pub clustering_order: Option<Vec<ColumnOrder>>,
pub comment: Option<LitStr>,
pub speculative_retry: Option<SpeculativeRetry>,
pub change_data_capture: Option<bool>,
pub gc_grace_seconds: Option<i32>,
pub bloom_filter_fp_chance: Option<f32>,
pub default_time_to_live: Option<i32>,
pub compaction: Option<Compaction>,
pub compression: Option<Compression>,
pub caching: Option<Caching>,
pub memtable_flush_period_in_ms: Option<i32>,
pub read_repair: Option<bool>,
}Fields
compact_storage: boolclustering_order: Option<Vec<ColumnOrder>>comment: Option<LitStr>speculative_retry: Option<SpeculativeRetry>change_data_capture: Option<bool>gc_grace_seconds: Option<i32>bloom_filter_fp_chance: Option<f32>default_time_to_live: Option<i32>compaction: Option<Compaction>compression: Option<Compression>caching: Option<Caching>memtable_flush_period_in_ms: Option<i32>read_repair: Option<bool>Trait Implementations
sourceimpl<'a> CustomToTokens<'a> for TableOpts
impl<'a> CustomToTokens<'a> for TableOpts
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl ToTokens for TableOpts
impl ToTokens for TableOpts
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl StructuralPartialEq for TableOpts
Auto Trait Implementations
impl RefUnwindSafe for TableOpts
impl Send for TableOpts
impl Sync for TableOpts
impl Unpin for TableOpts
impl UnwindSafe for TableOpts
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more