pub struct UpdateConfig {
pub enable_tile_updates: bool,
pub enable_feature_updates: bool,
pub enable_change_streams: bool,
pub max_queue_size: usize,
pub batch_size: usize,
pub update_interval_ms: u64,
}Expand description
Update configuration
Fields§
§enable_tile_updates: boolEnable tile updates
enable_feature_updates: boolEnable feature updates
enable_change_streams: boolEnable change streams
max_queue_size: usizeMaximum update queue size
batch_size: usizeUpdate batch size
update_interval_ms: u64Update interval in milliseconds
Trait Implementations§
Source§impl Clone for UpdateConfig
impl Clone for UpdateConfig
Source§fn clone(&self) -> UpdateConfig
fn clone(&self) -> UpdateConfig
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 UpdateConfig
impl Debug for UpdateConfig
Auto Trait Implementations§
impl Freeze for UpdateConfig
impl RefUnwindSafe for UpdateConfig
impl Send for UpdateConfig
impl Sync for UpdateConfig
impl Unpin for UpdateConfig
impl UnsafeUnpin for UpdateConfig
impl UnwindSafe for UpdateConfig
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