pub struct UpdateApplicationRecaptchaVerificationRequired {
pub verification_id: i64,
pub action: String,
pub recaptcha_key_id: String,
}Expand description
A request can’t be completed unless reCAPTCHA verification is performed; for official mobile applications only. The method setApplicationVerificationToken must be called once the verification is completed or failed
Fields§
§verification_id: i64Unique identifier for the verification process
action: StringThe action for the check
recaptcha_key_id: StringIdentifier of the reCAPTCHA key
Trait Implementations§
Source§impl Clone for UpdateApplicationRecaptchaVerificationRequired
impl Clone for UpdateApplicationRecaptchaVerificationRequired
Source§fn clone(&self) -> UpdateApplicationRecaptchaVerificationRequired
fn clone(&self) -> UpdateApplicationRecaptchaVerificationRequired
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 Default for UpdateApplicationRecaptchaVerificationRequired
impl Default for UpdateApplicationRecaptchaVerificationRequired
Source§fn default() -> UpdateApplicationRecaptchaVerificationRequired
fn default() -> UpdateApplicationRecaptchaVerificationRequired
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateApplicationRecaptchaVerificationRequired
impl<'de> Deserialize<'de> for UpdateApplicationRecaptchaVerificationRequired
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
Source§impl PartialEq for UpdateApplicationRecaptchaVerificationRequired
impl PartialEq for UpdateApplicationRecaptchaVerificationRequired
Source§fn eq(&self, other: &UpdateApplicationRecaptchaVerificationRequired) -> bool
fn eq(&self, other: &UpdateApplicationRecaptchaVerificationRequired) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateApplicationRecaptchaVerificationRequired
Auto Trait Implementations§
impl Freeze for UpdateApplicationRecaptchaVerificationRequired
impl RefUnwindSafe for UpdateApplicationRecaptchaVerificationRequired
impl Send for UpdateApplicationRecaptchaVerificationRequired
impl Sync for UpdateApplicationRecaptchaVerificationRequired
impl Unpin for UpdateApplicationRecaptchaVerificationRequired
impl UnsafeUnpin for UpdateApplicationRecaptchaVerificationRequired
impl UnwindSafe for UpdateApplicationRecaptchaVerificationRequired
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