pub struct ReplDataConfig {
pub data_manager_config: SSTableDataManagerConfig,
pub default_timeout_seconds: u64,
pub auto_detect_schema: bool,
pub max_rows_per_query: usize,
pub enable_query_cache: bool,
pub query_cache_ttl_seconds: u64,
}Expand description
REPL data access configuration
Fields§
§data_manager_config: SSTableDataManagerConfigData manager configuration
default_timeout_seconds: u64Default query timeout in seconds
auto_detect_schema: boolEnable automatic schema detection
max_rows_per_query: usizeMaximum rows per query (safety limit)
enable_query_cache: boolEnable query result caching
query_cache_ttl_seconds: u64Query cache TTL in seconds
Trait Implementations§
Source§impl Clone for ReplDataConfig
impl Clone for ReplDataConfig
Source§fn clone(&self) -> ReplDataConfig
fn clone(&self) -> ReplDataConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplDataConfig
impl Debug for ReplDataConfig
Auto Trait Implementations§
impl Freeze for ReplDataConfig
impl RefUnwindSafe for ReplDataConfig
impl Send for ReplDataConfig
impl Sync for ReplDataConfig
impl Unpin for ReplDataConfig
impl UnsafeUnpin for ReplDataConfig
impl UnwindSafe for ReplDataConfig
Blanket Implementations§
impl<T> Allocation for T
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