pub struct StrategyConfig {
    pub random_delay_range: (u64, u64),
}Expand description
Strategy configuration for different fetch approaches
Fields§
§random_delay_range: (u64, u64)Random delay range in milliseconds (for rate limiting)
Trait Implementations§
Source§impl Clone for StrategyConfig
 
impl Clone for StrategyConfig
Source§fn clone(&self) -> StrategyConfig
 
fn clone(&self) -> StrategyConfig
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 StrategyConfig
 
impl Debug for StrategyConfig
Auto Trait Implementations§
impl Freeze for StrategyConfig
impl RefUnwindSafe for StrategyConfig
impl Send for StrategyConfig
impl Sync for StrategyConfig
impl Unpin for StrategyConfig
impl UnwindSafe for StrategyConfig
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