pub struct UpdateApplicationVerificationRequired {
pub verification_id: i64,
pub nonce: String,
pub cloud_project_number: i64,
}Expand description
A request can’t be completed unless application 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
nonce: StringUnique base64url-encoded nonce for the classic Play Integrity verification (https:developer.android.com/google/play/integrity/classic) for Android, or a unique string to compare with verify_nonce field from a push notification for iOS
cloud_project_number: i64Cloud project number to pass to the Play Integrity API on Android
Trait Implementations§
Source§impl Clone for UpdateApplicationVerificationRequired
impl Clone for UpdateApplicationVerificationRequired
Source§fn clone(&self) -> UpdateApplicationVerificationRequired
fn clone(&self) -> UpdateApplicationVerificationRequired
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 UpdateApplicationVerificationRequired
impl Default for UpdateApplicationVerificationRequired
Source§fn default() -> UpdateApplicationVerificationRequired
fn default() -> UpdateApplicationVerificationRequired
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateApplicationVerificationRequired
impl<'de> Deserialize<'de> for UpdateApplicationVerificationRequired
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 UpdateApplicationVerificationRequired
impl PartialEq for UpdateApplicationVerificationRequired
Source§fn eq(&self, other: &UpdateApplicationVerificationRequired) -> bool
fn eq(&self, other: &UpdateApplicationVerificationRequired) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateApplicationVerificationRequired
Auto Trait Implementations§
impl Freeze for UpdateApplicationVerificationRequired
impl RefUnwindSafe for UpdateApplicationVerificationRequired
impl Send for UpdateApplicationVerificationRequired
impl Sync for UpdateApplicationVerificationRequired
impl Unpin for UpdateApplicationVerificationRequired
impl UnsafeUnpin for UpdateApplicationVerificationRequired
impl UnwindSafe for UpdateApplicationVerificationRequired
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