#[repr(u32)]pub enum ESteamNetworkingIdentityType {
k_ESteamNetworkingIdentityType_Invalid = 0,
k_ESteamNetworkingIdentityType_SteamID = 16,
k_ESteamNetworkingIdentityType_XboxPairwiseID = 17,
k_ESteamNetworkingIdentityType_SonyPSN = 18,
k_ESteamNetworkingIdentityType_IPAddress = 1,
k_ESteamNetworkingIdentityType_GenericString = 2,
k_ESteamNetworkingIdentityType_GenericBytes = 3,
k_ESteamNetworkingIdentityType_UnknownType = 4,
k_ESteamNetworkingIdentityType__Force32bit = 2_147_483_647,
}
Expand description
Different methods of describing the identity of a network host
Variants§
k_ESteamNetworkingIdentityType_Invalid = 0
k_ESteamNetworkingIdentityType_SteamID = 16
k_ESteamNetworkingIdentityType_XboxPairwiseID = 17
k_ESteamNetworkingIdentityType_SonyPSN = 18
k_ESteamNetworkingIdentityType_IPAddress = 1
k_ESteamNetworkingIdentityType_GenericString = 2
k_ESteamNetworkingIdentityType_GenericBytes = 3
k_ESteamNetworkingIdentityType_UnknownType = 4
k_ESteamNetworkingIdentityType__Force32bit = 2_147_483_647
Trait Implementations§
Source§impl Clone for ESteamNetworkingIdentityType
impl Clone for ESteamNetworkingIdentityType
Source§fn clone(&self) -> ESteamNetworkingIdentityType
fn clone(&self) -> ESteamNetworkingIdentityType
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 ESteamNetworkingIdentityType
impl Debug for ESteamNetworkingIdentityType
Source§impl Hash for ESteamNetworkingIdentityType
impl Hash for ESteamNetworkingIdentityType
Source§impl Ord for ESteamNetworkingIdentityType
impl Ord for ESteamNetworkingIdentityType
Source§fn cmp(&self, other: &ESteamNetworkingIdentityType) -> Ordering
fn cmp(&self, other: &ESteamNetworkingIdentityType) -> 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 ESteamNetworkingIdentityType
impl PartialEq for ESteamNetworkingIdentityType
Source§fn eq(&self, other: &ESteamNetworkingIdentityType) -> bool
fn eq(&self, other: &ESteamNetworkingIdentityType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for ESteamNetworkingIdentityType
impl PartialOrd for ESteamNetworkingIdentityType
impl Copy for ESteamNetworkingIdentityType
impl Eq for ESteamNetworkingIdentityType
impl StructuralPartialEq for ESteamNetworkingIdentityType
Auto Trait Implementations§
impl Freeze for ESteamNetworkingIdentityType
impl RefUnwindSafe for ESteamNetworkingIdentityType
impl Send for ESteamNetworkingIdentityType
impl Sync for ESteamNetworkingIdentityType
impl Unpin for ESteamNetworkingIdentityType
impl UnwindSafe for ESteamNetworkingIdentityType
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