#[repr(C)]pub struct SteamNetAuthenticationStatus_t {
pub m_eAvail: ESteamNetworkingAvailability,
pub m_debugMsg: [c_char; 256],
}Expand description
A struct used to describe our readiness to participate in authenticated, encrypted communication. In order to do this we need:
- The list of trusted CA certificates that might be relevant for this app.
- A valid certificate issued by a CA.
This callback is posted whenever the state of our readiness changes.
Fields§
§m_eAvail: ESteamNetworkingAvailabilityStatus
m_debugMsg: [c_char; 256]Non-localized English language status. For diagnostic/debugging purposes only.
Trait Implementations§
Source§impl Clone for SteamNetAuthenticationStatus_t
impl Clone for SteamNetAuthenticationStatus_t
Source§fn clone(&self) -> SteamNetAuthenticationStatus_t
fn clone(&self) -> SteamNetAuthenticationStatus_t
Returns a duplicate 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 moreimpl Copy for SteamNetAuthenticationStatus_t
Auto Trait Implementations§
impl Freeze for SteamNetAuthenticationStatus_t
impl RefUnwindSafe for SteamNetAuthenticationStatus_t
impl Send for SteamNetAuthenticationStatus_t
impl Sync for SteamNetAuthenticationStatus_t
impl Unpin for SteamNetAuthenticationStatus_t
impl UnsafeUnpin for SteamNetAuthenticationStatus_t
impl UnwindSafe for SteamNetAuthenticationStatus_t
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