#[repr(C)]pub struct _tagEOS_SessionDetails_Info {
pub ApiVersion: i32,
pub SessionId: *const c_char,
pub HostAddress: *const c_char,
pub NumOpenPublicConnections: u32,
pub Settings: *const EOS_SessionDetails_Settings,
pub OwnerUserId: EOS_ProductUserId,
pub OwnerServerClientId: *const c_char,
}Expand description
Internal details about a session, found on both active sessions and within search results
Fields§
§ApiVersion: i32API Version: Set this to EOS_SESSIONDETAILS_INFO_API_LATEST.
SessionId: *const c_charSession ID assigned by the backend service
HostAddress: *const c_charIP address of this session as visible by the backend service
NumOpenPublicConnections: u32Number of remaining open spaces on the session (NumPublicConnections - RegisteredPlayers
Settings: *const EOS_SessionDetails_SettingsReference to the additional settings associated with this session
OwnerUserId: EOS_ProductUserIdThe Product User ID of the session owner. Null if the session is not owned by a user.
OwnerServerClientId: *const c_charThe client id of the session owner. Null if the session is not owned by a server. The session is owned by a server if EOS_Platform_Options::bIsServer is EOS_TRUE.
Trait Implementations§
Source§impl Clone for _tagEOS_SessionDetails_Info
impl Clone for _tagEOS_SessionDetails_Info
Source§fn clone(&self) -> _tagEOS_SessionDetails_Info
fn clone(&self) -> _tagEOS_SessionDetails_Info
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 moreSource§impl Debug for _tagEOS_SessionDetails_Info
impl Debug for _tagEOS_SessionDetails_Info
impl Copy for _tagEOS_SessionDetails_Info
Auto Trait Implementations§
impl Freeze for _tagEOS_SessionDetails_Info
impl RefUnwindSafe for _tagEOS_SessionDetails_Info
impl !Send for _tagEOS_SessionDetails_Info
impl !Sync for _tagEOS_SessionDetails_Info
impl Unpin for _tagEOS_SessionDetails_Info
impl UnsafeUnpin for _tagEOS_SessionDetails_Info
impl UnwindSafe for _tagEOS_SessionDetails_Info
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