pub struct SolveCaptchaBuilder {
captcha_challenge: Option<String>,
/* private fields */
}
Expand description
Builder for SolveCaptcha
.
Fields§
§captcha_challenge: Option<String>
Implementations§
Source§impl SolveCaptchaBuilder
impl SolveCaptchaBuilder
pub fn captcha_challenge<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn build(&self) -> Result<SolveCaptcha, BuilderError>
pub fn build(&self) -> Result<SolveCaptcha, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Trait Implementations§
Source§impl Clone for SolveCaptchaBuilder
impl Clone for SolveCaptchaBuilder
Source§fn clone(&self) -> SolveCaptchaBuilder
fn clone(&self) -> SolveCaptchaBuilder
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for SolveCaptchaBuilder
impl !RefUnwindSafe for SolveCaptchaBuilder
impl !Send for SolveCaptchaBuilder
impl !Sync for SolveCaptchaBuilder
impl Unpin for SolveCaptchaBuilder
impl !UnwindSafe for SolveCaptchaBuilder
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