pub struct DispatcherConfig {
pub max_concurrent_queries: u32,
pub query_cache_size: Option<u64>,
pub enable_cross_connector_joins: bool,
pub default_timeout: u64,
}Expand description
Dispatcher configuration
Fields§
§max_concurrent_queries: u32§query_cache_size: Option<u64>§enable_cross_connector_joins: bool§default_timeout: u64Trait Implementations§
Source§impl Clone for DispatcherConfig
impl Clone for DispatcherConfig
Source§fn clone(&self) -> DispatcherConfig
fn clone(&self) -> DispatcherConfig
Returns a duplicate 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 DispatcherConfig
impl Debug for DispatcherConfig
Source§impl Default for DispatcherConfig
impl Default for DispatcherConfig
Source§impl<'de> Deserialize<'de> for DispatcherConfig
impl<'de> Deserialize<'de> for DispatcherConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DispatcherConfig
impl RefUnwindSafe for DispatcherConfig
impl Send for DispatcherConfig
impl Sync for DispatcherConfig
impl Unpin for DispatcherConfig
impl UnwindSafe for DispatcherConfig
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