#[non_exhaustive]#[repr(u32)]pub enum ELobbyType {
k_ELobbyTypePrivate = 0,
k_ELobbyTypeFriendsOnly = 1,
k_ELobbyTypePublic = 2,
k_ELobbyTypeInvisible = 3,
k_ELobbyTypePrivateUnique = 4,
}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_ELobbyTypePrivate = 0
k_ELobbyTypeFriendsOnly = 1
k_ELobbyTypePublic = 2
k_ELobbyTypeInvisible = 3
k_ELobbyTypePrivateUnique = 4
Trait Implementations§
Source§impl Clone for ELobbyType
impl Clone for ELobbyType
Source§fn clone(&self) -> ELobbyType
fn clone(&self) -> ELobbyType
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 ELobbyType
Source§impl Debug for ELobbyType
impl Debug for ELobbyType
impl Eq for ELobbyType
Source§impl Hash for ELobbyType
impl Hash for ELobbyType
Source§impl PartialEq for ELobbyType
impl PartialEq for ELobbyType
Source§fn eq(&self, other: &ELobbyType) -> bool
fn eq(&self, other: &ELobbyType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ELobbyType
Auto Trait Implementations§
impl Freeze for ELobbyType
impl RefUnwindSafe for ELobbyType
impl Send for ELobbyType
impl Sync for ELobbyType
impl Unpin for ELobbyType
impl UnsafeUnpin for ELobbyType
impl UnwindSafe for ELobbyType
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