pub struct WafEvasionConfig {
pub enabled: bool,
pub user_agents: Vec<String>,
}Expand description
WAF evasion configuration.
Fields§
§enabled: boolMaster switch for WAF evasion heuristics.
user_agents: Vec<String>User-Agent rotation pool.
Trait Implementations§
Source§impl Clone for WafEvasionConfig
impl Clone for WafEvasionConfig
Source§fn clone(&self) -> WafEvasionConfig
fn clone(&self) -> WafEvasionConfig
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 moreAuto Trait Implementations§
impl Freeze for WafEvasionConfig
impl RefUnwindSafe for WafEvasionConfig
impl Send for WafEvasionConfig
impl Sync for WafEvasionConfig
impl Unpin for WafEvasionConfig
impl UnsafeUnpin for WafEvasionConfig
impl UnwindSafe for WafEvasionConfig
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