pub struct Config {
pub api_url: String,
pub update_interval: i64,
pub prices_update_chunk: usize,
pub prices_update_chunk_delay: u64,
pub prices_update_retry_count: u32,
pub prices_update_retry_delay: u64,
pub intraday_update_chunk_delay: u64,
pub intraday_update_chunk_max_wait: u64,
pub intraday_update_retry_count: u32,
pub intraday_update_retry_delay: u64,
pub intraday_update_servers: Vec<i32>,
}Expand description
Tunable client configuration (the JS *_UPDATE_* globals and URLs).
Fields§
§api_url: String§update_interval: i64§prices_update_chunk: usize§prices_update_chunk_delay: u64§prices_update_retry_count: u32§prices_update_retry_delay: u64§intraday_update_chunk_delay: u64§intraday_update_chunk_max_wait: u64§intraday_update_retry_count: u32§intraday_update_retry_delay: u64§intraday_update_servers: Vec<i32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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