#[non_exhaustive]pub enum SolveMethod {
VisionLLM,
AudioBypass,
BehavioralBypass,
ThirdPartyService,
CrowdSourced,
AutoPass,
}Expand description
Which solving strategy produced the result.
#[non_exhaustive] so downstream match statements stay
forward-compatible across additions (e.g. AutoPass landed in
0.2.5 — without #[non_exhaustive] that would have been a
breaking change to the public enum).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VisionLLM
AudioBypass
BehavioralBypass
ThirdPartyService
CrowdSourced
AutoPass
Captcha auto-completed without explicit interaction — the vendor script populated the response field on its own (e.g. Cloudflare/hCaptcha/Google test sitekeys, or production passive challenges that pass on a clean fingerprint). The chain just polled for the token and read it. Cheapest possible “solve” — no mouse simulation, no VLM call, no API charge.
Trait Implementations§
Source§impl Clone for SolveMethod
impl Clone for SolveMethod
Source§fn clone(&self) -> SolveMethod
fn clone(&self) -> SolveMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SolveMethod
impl Debug for SolveMethod
Source§impl<'de> Deserialize<'de> for SolveMethod
impl<'de> Deserialize<'de> for SolveMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SolveMethod
impl Hash for SolveMethod
Source§impl PartialEq for SolveMethod
impl PartialEq for SolveMethod
Source§fn eq(&self, other: &SolveMethod) -> bool
fn eq(&self, other: &SolveMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SolveMethod
impl Serialize for SolveMethod
impl Eq for SolveMethod
impl StructuralPartialEq for SolveMethod
Auto Trait Implementations§
impl Freeze for SolveMethod
impl RefUnwindSafe for SolveMethod
impl Send for SolveMethod
impl Sync for SolveMethod
impl Unpin for SolveMethod
impl UnsafeUnpin for SolveMethod
impl UnwindSafe for SolveMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.