#[repr(u32)]pub enum EAuthSessionResponse {
    k_EAuthSessionResponseOK = 0,
    k_EAuthSessionResponseUserNotConnectedToSteam = 1,
    k_EAuthSessionResponseNoLicenseOrExpired = 2,
    k_EAuthSessionResponseVACBanned = 3,
    k_EAuthSessionResponseLoggedInElseWhere = 4,
    k_EAuthSessionResponseVACCheckTimedOut = 5,
    k_EAuthSessionResponseAuthTicketCanceled = 6,
    k_EAuthSessionResponseAuthTicketInvalidAlreadyUsed = 7,
    k_EAuthSessionResponseAuthTicketInvalid = 8,
    k_EAuthSessionResponsePublisherIssuedBan = 9,
    k_EAuthSessionResponseAuthTicketNetworkIdentityFailure = 10,
}Variants§
k_EAuthSessionResponseOK = 0
k_EAuthSessionResponseUserNotConnectedToSteam = 1
k_EAuthSessionResponseNoLicenseOrExpired = 2
k_EAuthSessionResponseVACBanned = 3
k_EAuthSessionResponseLoggedInElseWhere = 4
k_EAuthSessionResponseVACCheckTimedOut = 5
k_EAuthSessionResponseAuthTicketCanceled = 6
k_EAuthSessionResponseAuthTicketInvalidAlreadyUsed = 7
k_EAuthSessionResponseAuthTicketInvalid = 8
k_EAuthSessionResponsePublisherIssuedBan = 9
k_EAuthSessionResponseAuthTicketNetworkIdentityFailure = 10
Trait Implementations§
Source§impl Clone for EAuthSessionResponse
 
impl Clone for EAuthSessionResponse
Source§fn clone(&self) -> EAuthSessionResponse
 
fn clone(&self) -> EAuthSessionResponse
Returns a copy 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 EAuthSessionResponse
 
impl Debug for EAuthSessionResponse
Source§impl Hash for EAuthSessionResponse
 
impl Hash for EAuthSessionResponse
Source§impl Ord for EAuthSessionResponse
 
impl Ord for EAuthSessionResponse
Source§fn cmp(&self, other: &EAuthSessionResponse) -> Ordering
 
fn cmp(&self, other: &EAuthSessionResponse) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EAuthSessionResponse
 
impl PartialEq for EAuthSessionResponse
Source§impl PartialOrd for EAuthSessionResponse
 
impl PartialOrd for EAuthSessionResponse
impl Copy for EAuthSessionResponse
impl Eq for EAuthSessionResponse
impl StructuralPartialEq for EAuthSessionResponse
Auto Trait Implementations§
impl Freeze for EAuthSessionResponse
impl RefUnwindSafe for EAuthSessionResponse
impl Send for EAuthSessionResponse
impl Sync for EAuthSessionResponse
impl Unpin for EAuthSessionResponse
impl UnwindSafe for EAuthSessionResponse
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