#[non_exhaustive]#[repr(u32)]pub enum EBeginAuthSessionResult {
k_EBeginAuthSessionResultOK = 0,
k_EBeginAuthSessionResultInvalidTicket = 1,
k_EBeginAuthSessionResultDuplicateRequest = 2,
k_EBeginAuthSessionResultInvalidVersion = 3,
k_EBeginAuthSessionResultGameMismatch = 4,
k_EBeginAuthSessionResultExpiredTicket = 5,
}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_EBeginAuthSessionResultOK = 0
k_EBeginAuthSessionResultInvalidTicket = 1
k_EBeginAuthSessionResultDuplicateRequest = 2
k_EBeginAuthSessionResultInvalidVersion = 3
k_EBeginAuthSessionResultGameMismatch = 4
k_EBeginAuthSessionResultExpiredTicket = 5
Trait Implementations§
Source§impl Clone for EBeginAuthSessionResult
impl Clone for EBeginAuthSessionResult
Source§fn clone(&self) -> EBeginAuthSessionResult
fn clone(&self) -> EBeginAuthSessionResult
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 moreSource§impl Debug for EBeginAuthSessionResult
impl Debug for EBeginAuthSessionResult
Source§impl Hash for EBeginAuthSessionResult
impl Hash for EBeginAuthSessionResult
Source§impl PartialEq for EBeginAuthSessionResult
impl PartialEq for EBeginAuthSessionResult
impl Copy for EBeginAuthSessionResult
impl Eq for EBeginAuthSessionResult
impl StructuralPartialEq for EBeginAuthSessionResult
Auto Trait Implementations§
impl Freeze for EBeginAuthSessionResult
impl RefUnwindSafe for EBeginAuthSessionResult
impl Send for EBeginAuthSessionResult
impl Sync for EBeginAuthSessionResult
impl Unpin for EBeginAuthSessionResult
impl UnsafeUnpin for EBeginAuthSessionResult
impl UnwindSafe for EBeginAuthSessionResult
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