pub struct MicrosoftAuthResult {
pub access_token: AccessToken,
pub xbox_uid: String,
pub refresh_token: Option<RefreshToken>,
}Expand description
Result from the Microsoft authentication function
Fields§
§access_token: AccessTokenThe access token for logging into the game and other API services
xbox_uid: StringThe Xbox UID of the user
refresh_token: Option<RefreshToken>The refresh token
Auto Trait Implementations§
impl Freeze for MicrosoftAuthResult
impl RefUnwindSafe for MicrosoftAuthResult
impl Send for MicrosoftAuthResult
impl Sync for MicrosoftAuthResult
impl Unpin for MicrosoftAuthResult
impl UnwindSafe for MicrosoftAuthResult
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