pub struct CaptchaSolution {
pub g_recaptcha_response: Option<String>,
pub g_recaptcha_response_without_spaces: Option<String>,
pub text: Option<String>,
pub expire_time: Option<i64>,
}Fields§
§g_recaptcha_response: Option<String>§g_recaptcha_response_without_spaces: Option<String>§text: Option<String>§expire_time: Option<i64>Trait Implementations§
Source§impl Debug for CaptchaSolution
impl Debug for CaptchaSolution
Source§impl<'de> Deserialize<'de> for CaptchaSolution
impl<'de> Deserialize<'de> for CaptchaSolution
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
Auto Trait Implementations§
impl Freeze for CaptchaSolution
impl RefUnwindSafe for CaptchaSolution
impl Send for CaptchaSolution
impl Sync for CaptchaSolution
impl Unpin for CaptchaSolution
impl UnsafeUnpin for CaptchaSolution
impl UnwindSafe for CaptchaSolution
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