#[repr(u32)]pub enum ESteamNetworkingFakeIPType {
k_ESteamNetworkingFakeIPType_Invalid = 0,
k_ESteamNetworkingFakeIPType_NotFake = 1,
k_ESteamNetworkingFakeIPType_GlobalIPv4 = 2,
k_ESteamNetworkingFakeIPType_LocalIPv4 = 3,
k_ESteamNetworkingFakeIPType__Force32Bit = 2_147_483_647,
}
Expand description
“Fake IPs” are assigned to hosts, to make it easier to interface with older code that assumed all hosts will have an IPv4 address
Variants§
k_ESteamNetworkingFakeIPType_Invalid = 0
k_ESteamNetworkingFakeIPType_NotFake = 1
k_ESteamNetworkingFakeIPType_GlobalIPv4 = 2
k_ESteamNetworkingFakeIPType_LocalIPv4 = 3
k_ESteamNetworkingFakeIPType__Force32Bit = 2_147_483_647
Trait Implementations§
Source§impl Clone for ESteamNetworkingFakeIPType
impl Clone for ESteamNetworkingFakeIPType
Source§fn clone(&self) -> ESteamNetworkingFakeIPType
fn clone(&self) -> ESteamNetworkingFakeIPType
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 ESteamNetworkingFakeIPType
impl Debug for ESteamNetworkingFakeIPType
Source§impl Hash for ESteamNetworkingFakeIPType
impl Hash for ESteamNetworkingFakeIPType
Source§impl Ord for ESteamNetworkingFakeIPType
impl Ord for ESteamNetworkingFakeIPType
Source§fn cmp(&self, other: &ESteamNetworkingFakeIPType) -> Ordering
fn cmp(&self, other: &ESteamNetworkingFakeIPType) -> 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 PartialOrd for ESteamNetworkingFakeIPType
impl PartialOrd for ESteamNetworkingFakeIPType
impl Copy for ESteamNetworkingFakeIPType
impl Eq for ESteamNetworkingFakeIPType
impl StructuralPartialEq for ESteamNetworkingFakeIPType
Auto Trait Implementations§
impl Freeze for ESteamNetworkingFakeIPType
impl RefUnwindSafe for ESteamNetworkingFakeIPType
impl Send for ESteamNetworkingFakeIPType
impl Sync for ESteamNetworkingFakeIPType
impl Unpin for ESteamNetworkingFakeIPType
impl UnwindSafe for ESteamNetworkingFakeIPType
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