#[repr(u32)]
pub enum ESteamNetworkingIdentityType {
k_ESteamNetworkingIdentityType_Invalid,
k_ESteamNetworkingIdentityType_SteamID,
k_ESteamNetworkingIdentityType_IPAddress,
k_ESteamNetworkingIdentityType_GenericString,
k_ESteamNetworkingIdentityType_GenericBytes,
k_ESteamNetworkingIdentityType_UnknownType,
k_ESteamNetworkingIdentityType__Force32bit,
}
Expand description
Different methods of describing the identity of a network host
Variants
k_ESteamNetworkingIdentityType_Invalid
k_ESteamNetworkingIdentityType_SteamID
k_ESteamNetworkingIdentityType_IPAddress
k_ESteamNetworkingIdentityType_GenericString
k_ESteamNetworkingIdentityType_GenericBytes
k_ESteamNetworkingIdentityType_UnknownType
k_ESteamNetworkingIdentityType__Force32bit
Trait Implementations
sourceimpl Clone for ESteamNetworkingIdentityType
impl Clone for ESteamNetworkingIdentityType
sourcefn clone(&self) -> ESteamNetworkingIdentityType
fn clone(&self) -> ESteamNetworkingIdentityType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ESteamNetworkingIdentityType
impl Debug for ESteamNetworkingIdentityType
sourceimpl Hash for ESteamNetworkingIdentityType
impl Hash for ESteamNetworkingIdentityType
sourceimpl Ord for ESteamNetworkingIdentityType
impl Ord for ESteamNetworkingIdentityType
sourcefn cmp(&self, other: &ESteamNetworkingIdentityType) -> Ordering
fn cmp(&self, other: &ESteamNetworkingIdentityType) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<ESteamNetworkingIdentityType> for ESteamNetworkingIdentityType
impl PartialOrd<ESteamNetworkingIdentityType> for ESteamNetworkingIdentityType
sourcefn partial_cmp(&self, other: &ESteamNetworkingIdentityType) -> Option<Ordering>
fn partial_cmp(&self, other: &ESteamNetworkingIdentityType) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for ESteamNetworkingIdentityType
impl Eq for ESteamNetworkingIdentityType
impl StructuralEq for ESteamNetworkingIdentityType
impl StructuralPartialEq for ESteamNetworkingIdentityType
Auto Trait Implementations
impl RefUnwindSafe for ESteamNetworkingIdentityType
impl Send for ESteamNetworkingIdentityType
impl Sync for ESteamNetworkingIdentityType
impl Unpin for ESteamNetworkingIdentityType
impl UnwindSafe for ESteamNetworkingIdentityType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more