pub trait AntiDetectionStrategy: Send + Sync {
// Required methods
fn prepare_request(&mut self, domain: &str, ctx: &mut AntiDetectionContext);
fn record_response(&mut self, domain: &str, status: u16, latency: Duration);
}Expand description
Trait describing an anti detection step.