#[repr(u32)]pub enum EAccountType {
k_EAccountTypeInvalid = 0,
k_EAccountTypeIndividual = 1,
k_EAccountTypeMultiseat = 2,
k_EAccountTypeGameServer = 3,
k_EAccountTypeAnonGameServer = 4,
k_EAccountTypePending = 5,
k_EAccountTypeContentServer = 6,
k_EAccountTypeClan = 7,
k_EAccountTypeChat = 8,
k_EAccountTypeConsoleUser = 9,
k_EAccountTypeAnonUser = 10,
k_EAccountTypeMax = 11,
}
Variants§
k_EAccountTypeInvalid = 0
k_EAccountTypeIndividual = 1
k_EAccountTypeMultiseat = 2
k_EAccountTypeGameServer = 3
k_EAccountTypeAnonGameServer = 4
k_EAccountTypePending = 5
k_EAccountTypeContentServer = 6
k_EAccountTypeClan = 7
k_EAccountTypeChat = 8
k_EAccountTypeConsoleUser = 9
k_EAccountTypeAnonUser = 10
k_EAccountTypeMax = 11
Trait Implementations§
Source§impl Clone for EAccountType
impl Clone for EAccountType
Source§fn clone(&self) -> EAccountType
fn clone(&self) -> EAccountType
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 EAccountType
impl Debug for EAccountType
Source§impl Hash for EAccountType
impl Hash for EAccountType
Source§impl Ord for EAccountType
impl Ord for EAccountType
Source§fn cmp(&self, other: &EAccountType) -> Ordering
fn cmp(&self, other: &EAccountType) -> 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 EAccountType
impl PartialEq for EAccountType
Source§impl PartialOrd for EAccountType
impl PartialOrd for EAccountType
impl Copy for EAccountType
impl Eq for EAccountType
impl StructuralPartialEq for EAccountType
Auto Trait Implementations§
impl Freeze for EAccountType
impl RefUnwindSafe for EAccountType
impl Send for EAccountType
impl Sync for EAccountType
impl Unpin for EAccountType
impl UnwindSafe for EAccountType
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