#[repr(C)]pub struct _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions {
pub ApiVersion: i32,
pub SpawnedPlayerHandle: EOS_AntiCheatCommon_ClientHandle,
pub TeamId: u32,
pub CharacterId: u32,
}Expand description
Input parameters for the EOS_AntiCheatServer_LogPlayerSpawn function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGPLAYERSPAWN_API_LATEST.
SpawnedPlayerHandle: EOS_AntiCheatCommon_ClientHandleLocally unique value used in RegisterClient/RegisterPeer
TeamId: u32Optional identifier for the player’s team. If none, use 0.
CharacterId: u32Optional identifier for the player’s character. If none, use 0.
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl Clone for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
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_AntiCheatCommon_LogPlayerSpawnOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl !Send for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl !Sync for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl Unpin for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
impl UnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerSpawnOptions
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