#[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 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 Ord for SteamNetAuthenticationStatus_t
 
impl Ord for SteamNetAuthenticationStatus_t
Source§fn cmp(&self, other: &SteamNetAuthenticationStatus_t) -> Ordering
 
fn cmp(&self, other: &SteamNetAuthenticationStatus_t) -> 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 PartialEq for SteamNetAuthenticationStatus_t
 
impl PartialEq for SteamNetAuthenticationStatus_t
Source§fn eq(&self, other: &SteamNetAuthenticationStatus_t) -> bool
 
fn eq(&self, other: &SteamNetAuthenticationStatus_t) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SteamNetAuthenticationStatus_t
 
impl PartialOrd for SteamNetAuthenticationStatus_t
impl Copy for SteamNetAuthenticationStatus_t
impl Eq for SteamNetAuthenticationStatus_t
impl StructuralPartialEq 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 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