pub struct ApiAccountGameCenter {
pub bundle_id: String,
pub player_id: String,
pub public_key_url: String,
pub salt: String,
pub signature: String,
pub timestamp_seconds: String,
pub vars: HashMap<String, String>,
}Expand description
Send Apple’s Game Center account credentials to the server. Used with authenticate/link/unlink.
Fields§
§bundle_id: String§player_id: String§public_key_url: String§salt: String§signature: String§timestamp_seconds: String§vars: HashMap<String, String>Trait Implementations§
Source§impl DeJson for ApiAccountGameCenter
impl DeJson for ApiAccountGameCenter
Source§impl Debug for ApiAccountGameCenter
impl Debug for ApiAccountGameCenter
Source§impl Default for ApiAccountGameCenter
impl Default for ApiAccountGameCenter
Source§fn default() -> ApiAccountGameCenter
fn default() -> ApiAccountGameCenter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApiAccountGameCenter
impl RefUnwindSafe for ApiAccountGameCenter
impl Send for ApiAccountGameCenter
impl Sync for ApiAccountGameCenter
impl Unpin for ApiAccountGameCenter
impl UnwindSafe for ApiAccountGameCenter
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