pub enum ProxyResponseVerdict {
Success,
ProxyBlocked,
Passthrough,
}Expand description
Result of classifying a response from a proxy.
Variants§
Success
Response is good. Proxy records a success.
ProxyBlocked
Proxy is blocked (e.g. captcha, anti-bot). Records failure, retries with another proxy.
Passthrough
Server-side issue unrelated to proxy. Returns response as-is without affecting proxy stats.
Trait Implementations§
Source§impl Clone for ProxyResponseVerdict
impl Clone for ProxyResponseVerdict
Source§fn clone(&self) -> ProxyResponseVerdict
fn clone(&self) -> ProxyResponseVerdict
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 ProxyResponseVerdict
impl Debug for ProxyResponseVerdict
Source§impl PartialEq for ProxyResponseVerdict
impl PartialEq for ProxyResponseVerdict
impl Copy for ProxyResponseVerdict
impl StructuralPartialEq for ProxyResponseVerdict
Auto Trait Implementations§
impl Freeze for ProxyResponseVerdict
impl RefUnwindSafe for ProxyResponseVerdict
impl Send for ProxyResponseVerdict
impl Sync for ProxyResponseVerdict
impl Unpin for ProxyResponseVerdict
impl UnsafeUnpin for ProxyResponseVerdict
impl UnwindSafe for ProxyResponseVerdict
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