Struct gns_sys::SteamRelayNetworkStatus_t
source · [−]#[repr(C)]pub struct SteamRelayNetworkStatus_t {
pub m_eAvail: ESteamNetworkingAvailability,
pub m_bPingMeasurementInProgress: c_int,
pub m_eAvailNetworkConfig: ESteamNetworkingAvailability,
pub m_eAvailAnyRelay: ESteamNetworkingAvailability,
pub m_debugMsg: [c_char; 256],
}
Expand description
A struct used to describe our readiness to use the relay network. To do this we first need to fetch the network configuration, which describes what POPs are available.
Fields
m_eAvail: ESteamNetworkingAvailability
Summary status. When this is “current”, initialization has completed. Anything else means you are not ready yet, or there is a significant problem.
m_bPingMeasurementInProgress: c_int
Nonzero if latency measurement is in progress (or pending, awaiting a prerequisite).
m_eAvailNetworkConfig: ESteamNetworkingAvailability
Status obtaining the network config. This is a prerequisite for relay network access.
Failure to obtain the network config almost always indicates a problem with the local internet connection.
m_eAvailAnyRelay: ESteamNetworkingAvailability
Current ability to communicate with ANY relay. Note that the complete failure to communicate with any relays almost always indicates a problem with the local Internet connection. (However, just because you can reach a single relay doesn’t mean that the local connection is in perfect health.)
m_debugMsg: [c_char; 256]
Non-localized English language status. For diagnostic/debugging purposes only.
Trait Implementations
sourceimpl Clone for SteamRelayNetworkStatus_t
impl Clone for SteamRelayNetworkStatus_t
sourcefn clone(&self) -> SteamRelayNetworkStatus_t
fn clone(&self) -> SteamRelayNetworkStatus_t
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 SteamRelayNetworkStatus_t
impl Debug for SteamRelayNetworkStatus_t
sourceimpl Default for SteamRelayNetworkStatus_t
impl Default for SteamRelayNetworkStatus_t
sourceimpl Hash for SteamRelayNetworkStatus_t
impl Hash for SteamRelayNetworkStatus_t
sourceimpl Ord for SteamRelayNetworkStatus_t
impl Ord for SteamRelayNetworkStatus_t
sourcefn cmp(&self, other: &SteamRelayNetworkStatus_t) -> Ordering
fn cmp(&self, other: &SteamRelayNetworkStatus_t) -> 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 PartialEq<SteamRelayNetworkStatus_t> for SteamRelayNetworkStatus_t
impl PartialEq<SteamRelayNetworkStatus_t> for SteamRelayNetworkStatus_t
sourcefn eq(&self, other: &SteamRelayNetworkStatus_t) -> bool
fn eq(&self, other: &SteamRelayNetworkStatus_t) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SteamRelayNetworkStatus_t) -> bool
fn ne(&self, other: &SteamRelayNetworkStatus_t) -> bool
This method tests for !=
.
sourceimpl PartialOrd<SteamRelayNetworkStatus_t> for SteamRelayNetworkStatus_t
impl PartialOrd<SteamRelayNetworkStatus_t> for SteamRelayNetworkStatus_t
sourcefn partial_cmp(&self, other: &SteamRelayNetworkStatus_t) -> Option<Ordering>
fn partial_cmp(&self, other: &SteamRelayNetworkStatus_t) -> 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 SteamRelayNetworkStatus_t
impl Eq for SteamRelayNetworkStatus_t
impl StructuralEq for SteamRelayNetworkStatus_t
impl StructuralPartialEq for SteamRelayNetworkStatus_t
Auto Trait Implementations
impl RefUnwindSafe for SteamRelayNetworkStatus_t
impl Send for SteamRelayNetworkStatus_t
impl Sync for SteamRelayNetworkStatus_t
impl Unpin for SteamRelayNetworkStatus_t
impl UnwindSafe for SteamRelayNetworkStatus_t
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