pub struct CaptchaInfo {
pub image: String,
pub ticket: String,
}Expand description
CAPTCHA response for CLI use
Fields§
§image: StringBase64 encoded image data
ticket: StringCAPTCHA ticket for validation
Trait Implementations§
Source§impl Clone for CaptchaInfo
impl Clone for CaptchaInfo
Source§fn clone(&self) -> CaptchaInfo
fn clone(&self) -> CaptchaInfo
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 moreAuto Trait Implementations§
impl Freeze for CaptchaInfo
impl RefUnwindSafe for CaptchaInfo
impl Send for CaptchaInfo
impl Sync for CaptchaInfo
impl Unpin for CaptchaInfo
impl UnwindSafe for CaptchaInfo
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