#[repr(C)]pub struct _tagEOS_AntiCheatCommon_LogGameRoundStartOptions {
pub ApiVersion: i32,
pub SessionIdentifier: *const c_char,
pub LevelName: *const c_char,
pub ModeName: *const c_char,
pub RoundTimeSeconds: u32,
pub CompetitionType: EOS_EAntiCheatCommonGameRoundCompetitionType,
}Expand description
Input parameters for the EOS_AntiCheatServer_LogGameRoundStart function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGGAMEROUNDSTART_API_LATEST.
SessionIdentifier: *const c_charOptional game session or match identifier useful for some backend API integrations
LevelName: *const c_charOptional name of the map being played
ModeName: *const c_charOptional name of the game mode being played
RoundTimeSeconds: u32Optional length of the game round to be played, in seconds. If none, use 0.
CompetitionType: EOS_EAntiCheatCommonGameRoundCompetitionTypeType of competition for this game round
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl Clone for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
fn clone(&self) -> _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
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_LogGameRoundStartOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl !Send for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl !Sync for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl Unpin for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
impl UnwindSafe for _tagEOS_AntiCheatCommon_LogGameRoundStartOptions
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