pub struct XboxLiveAuthResponse {
pub issue_instant: String,
pub not_after: String,
pub token: String,
pub display_claims: HashMap<String, Vec<HashMap<String, String>>>,
}
Fields§
§issue_instant: String
§not_after: String
§token: String
§display_claims: HashMap<String, Vec<HashMap<String, String>>>
Trait Implementations§
Source§impl Debug for XboxLiveAuthResponse
impl Debug for XboxLiveAuthResponse
Source§impl<'de> Deserialize<'de> for XboxLiveAuthResponse
impl<'de> Deserialize<'de> for XboxLiveAuthResponse
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 XboxLiveAuthResponse
impl RefUnwindSafe for XboxLiveAuthResponse
impl Send for XboxLiveAuthResponse
impl Sync for XboxLiveAuthResponse
impl Unpin for XboxLiveAuthResponse
impl UnwindSafe for XboxLiveAuthResponse
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