pub struct KiteConnectConfig {
pub base_url: String,
pub timeout: u64,
pub retry_config: RetryConfig,
pub cache_config: Option<CacheConfig>,
pub max_idle_connections: usize,
pub idle_timeout: u64,
pub enable_rate_limiting: bool,
}
Expand description
Configuration for KiteConnect client
Fields§
§base_url: String
§timeout: u64
§retry_config: RetryConfig
§cache_config: Option<CacheConfig>
§max_idle_connections: usize
§idle_timeout: u64
§enable_rate_limiting: bool
Trait Implementations§
Source§impl Clone for KiteConnectConfig
impl Clone for KiteConnectConfig
Source§fn clone(&self) -> KiteConnectConfig
fn clone(&self) -> KiteConnectConfig
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 moreSource§impl Debug for KiteConnectConfig
impl Debug for KiteConnectConfig
Auto Trait Implementations§
impl Freeze for KiteConnectConfig
impl RefUnwindSafe for KiteConnectConfig
impl Send for KiteConnectConfig
impl Sync for KiteConnectConfig
impl Unpin for KiteConnectConfig
impl UnwindSafe for KiteConnectConfig
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