pub struct ValidatedRefreshToken {
pub steam_id: SteamID,
pub token: String,
}Expand description
Result of validating a refresh token.
Fields§
§steam_id: SteamIDThe SteamID extracted from the token.
token: StringThe validated token string.
Trait Implementations§
Source§impl Clone for ValidatedRefreshToken
impl Clone for ValidatedRefreshToken
Source§fn clone(&self) -> ValidatedRefreshToken
fn clone(&self) -> ValidatedRefreshToken
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 moreAuto Trait Implementations§
impl Freeze for ValidatedRefreshToken
impl RefUnwindSafe for ValidatedRefreshToken
impl Send for ValidatedRefreshToken
impl Sync for ValidatedRefreshToken
impl Unpin for ValidatedRefreshToken
impl UnsafeUnpin for ValidatedRefreshToken
impl UnwindSafe for ValidatedRefreshToken
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