pub struct UnblockConfig {
pub url: String,
pub country: Option<String>,
pub timeout: Option<u32>,
pub browser_timeout: Option<u32>,
pub enable_mcp: bool,
pub solve_captcha: bool,
}Expand description
Unblock request body.
Fields§
§url: StringTarget URL.
country: Option<String>Proxy country.
timeout: Option<u32>Navigation timeout.
browser_timeout: Option<u32>Browser session timeout.
enable_mcp: boolEnable MCP support in the browser.
solve_captcha: boolArm the captcha solver on the post-unblock session.
Trait Implementations§
Source§impl Clone for UnblockConfig
impl Clone for UnblockConfig
Source§fn clone(&self) -> UnblockConfig
fn clone(&self) -> UnblockConfig
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 UnblockConfig
impl Debug for UnblockConfig
Source§impl Default for UnblockConfig
impl Default for UnblockConfig
Source§fn default() -> UnblockConfig
fn default() -> UnblockConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UnblockConfig
impl RefUnwindSafe for UnblockConfig
impl Send for UnblockConfig
impl Sync for UnblockConfig
impl Unpin for UnblockConfig
impl UnsafeUnpin for UnblockConfig
impl UnwindSafe for UnblockConfig
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