#[repr(C)]pub struct _tagEOS_Sessions_RegisterPlayersOptions {
pub ApiVersion: i32,
pub SessionName: *const c_char,
pub PlayersToRegister: *mut EOS_ProductUserId,
pub PlayersToRegisterCount: u32,
}Expand description
Input parameters for the EOS_Sessions_RegisterPlayers function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_SESSIONS_REGISTERPLAYERS_API_LATEST.
SessionName: *const c_charName of the session for which to register players
PlayersToRegister: *mut EOS_ProductUserIdArray of players to register with the session
PlayersToRegisterCount: u32Number of players in the array
Trait Implementations§
Source§impl Clone for _tagEOS_Sessions_RegisterPlayersOptions
impl Clone for _tagEOS_Sessions_RegisterPlayersOptions
Source§fn clone(&self) -> _tagEOS_Sessions_RegisterPlayersOptions
fn clone(&self) -> _tagEOS_Sessions_RegisterPlayersOptions
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 _tagEOS_Sessions_RegisterPlayersOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_Sessions_RegisterPlayersOptions
impl RefUnwindSafe for _tagEOS_Sessions_RegisterPlayersOptions
impl !Send for _tagEOS_Sessions_RegisterPlayersOptions
impl !Sync for _tagEOS_Sessions_RegisterPlayersOptions
impl Unpin for _tagEOS_Sessions_RegisterPlayersOptions
impl UnsafeUnpin for _tagEOS_Sessions_RegisterPlayersOptions
impl UnwindSafe for _tagEOS_Sessions_RegisterPlayersOptions
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