#[non_exhaustive]#[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 (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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 duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EAuthSessionResponse
Source§impl Debug for EAuthSessionResponse
impl Debug for EAuthSessionResponse
impl Eq for EAuthSessionResponse
Source§impl Hash for EAuthSessionResponse
impl Hash for EAuthSessionResponse
Source§impl PartialEq for EAuthSessionResponse
impl PartialEq for EAuthSessionResponse
Source§fn eq(&self, other: &EAuthSessionResponse) -> bool
fn eq(&self, other: &EAuthSessionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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