pub struct StealthConfig {
pub enabled: bool,
pub human_like_delays: bool,
pub randomize_headers: bool,
pub browser_quirks: bool,
pub min_delay_secs: f64,
pub max_delay_secs: f64,
}Expand description
Configuration for stealth mode.
Fields§
§enabled: bool§human_like_delays: bool§randomize_headers: bool§browser_quirks: bool§min_delay_secs: f64§max_delay_secs: f64Trait Implementations§
Source§impl Clone for StealthConfig
impl Clone for StealthConfig
Source§fn clone(&self) -> StealthConfig
fn clone(&self) -> StealthConfig
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 StealthConfig
impl Debug for StealthConfig
Auto Trait Implementations§
impl Freeze for StealthConfig
impl RefUnwindSafe for StealthConfig
impl Send for StealthConfig
impl Sync for StealthConfig
impl Unpin for StealthConfig
impl UnsafeUnpin for StealthConfig
impl UnwindSafe for StealthConfig
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