pub struct ApplicationVerifyResponse {
pub alternate_player_id: Option<String>,
pub kind: Option<String>,
pub player_id: Option<String>,
}Expand description
A third party application verification response resource.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- verify applications (response)
Fields§
§alternate_player_id: Option<String>An alternate ID that was once used for the player that was issued the auth token used in this request. (This field is not normally populated.)
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#applicationVerifyResponse.
player_id: Option<String>The ID of the player that was issued the auth token used in this request.
Trait Implementations§
Source§impl Clone for ApplicationVerifyResponse
impl Clone for ApplicationVerifyResponse
Source§fn clone(&self) -> ApplicationVerifyResponse
fn clone(&self) -> ApplicationVerifyResponse
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 Debug for ApplicationVerifyResponse
impl Debug for ApplicationVerifyResponse
Source§impl Default for ApplicationVerifyResponse
impl Default for ApplicationVerifyResponse
Source§fn default() -> ApplicationVerifyResponse
fn default() -> ApplicationVerifyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationVerifyResponse
impl<'de> Deserialize<'de> for ApplicationVerifyResponse
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
impl ResponseResult for ApplicationVerifyResponse
Auto Trait Implementations§
impl Freeze for ApplicationVerifyResponse
impl RefUnwindSafe for ApplicationVerifyResponse
impl Send for ApplicationVerifyResponse
impl Sync for ApplicationVerifyResponse
impl Unpin for ApplicationVerifyResponse
impl UnwindSafe for ApplicationVerifyResponse
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