#[repr(C)]pub struct SteamNetworkingIdentityRender {
pub buf: [c_char; 128],
}
Expand description
Utility class for printing a SteamNetworkingIdentity. E.g. printf( “Identity is ‘%s’\n”, SteamNetworkingIdentityRender( identity ).c_str() );
Fields§
§buf: [c_char; 128]
Trait Implementations§
Source§impl Clone for SteamNetworkingIdentityRender
impl Clone for SteamNetworkingIdentityRender
Source§fn clone(&self) -> SteamNetworkingIdentityRender
fn clone(&self) -> SteamNetworkingIdentityRender
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 Hash for SteamNetworkingIdentityRender
impl Hash for SteamNetworkingIdentityRender
Source§impl Ord for SteamNetworkingIdentityRender
impl Ord for SteamNetworkingIdentityRender
Source§fn cmp(&self, other: &SteamNetworkingIdentityRender) -> Ordering
fn cmp(&self, other: &SteamNetworkingIdentityRender) -> 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 SteamNetworkingIdentityRender
impl PartialEq for SteamNetworkingIdentityRender
Source§fn eq(&self, other: &SteamNetworkingIdentityRender) -> bool
fn eq(&self, other: &SteamNetworkingIdentityRender) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for SteamNetworkingIdentityRender
impl PartialOrd for SteamNetworkingIdentityRender
impl Copy for SteamNetworkingIdentityRender
impl Eq for SteamNetworkingIdentityRender
impl StructuralPartialEq for SteamNetworkingIdentityRender
Auto Trait Implementations§
impl Freeze for SteamNetworkingIdentityRender
impl RefUnwindSafe for SteamNetworkingIdentityRender
impl Send for SteamNetworkingIdentityRender
impl Sync for SteamNetworkingIdentityRender
impl Unpin for SteamNetworkingIdentityRender
impl UnwindSafe for SteamNetworkingIdentityRender
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