pub enum CaptchaTask {
HCaptchaProxyless {
website_url: String,
website_key: String,
},
ReCaptchaV2Proxyless {
website_url: String,
website_key: String,
},
ReCaptchaV3Proxyless {
website_url: String,
website_key: String,
min_score: f32,
page_action: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for CaptchaTask
impl Debug for CaptchaTask
Auto Trait Implementations§
impl Freeze for CaptchaTask
impl RefUnwindSafe for CaptchaTask
impl Send for CaptchaTask
impl Sync for CaptchaTask
impl Unpin for CaptchaTask
impl UnsafeUnpin for CaptchaTask
impl UnwindSafe for CaptchaTask
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