#[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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.