#[repr(C)]pub struct _tagEOS_AntiCheatCommon_LogEventOptions {
pub ApiVersion: i32,
pub ClientHandle: EOS_AntiCheatCommon_ClientHandle,
pub EventId: u32,
pub ParamsCount: u32,
pub Params: *const EOS_AntiCheatCommon_LogEventParamPair,
}Expand description
Input parameters for the EOS_AntiCheatServer_LogEvent function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGEVENT_API_LATEST.
ClientHandle: EOS_AntiCheatCommon_ClientHandleOptional client who this event is primarily associated with. If not applicable, use 0.
EventId: u32Unique event identifier previously configured in RegisterEvent
ParamsCount: u32Number of parameters described in Params
Params: *const EOS_AntiCheatCommon_LogEventParamPairSet of parameter types previously configured in RegisterEvent, and their values
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_LogEventOptions
impl Clone for _tagEOS_AntiCheatCommon_LogEventOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_LogEventOptions
fn clone(&self) -> _tagEOS_AntiCheatCommon_LogEventOptions
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_LogEventOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_LogEventOptions
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_LogEventOptions
impl !Send for _tagEOS_AntiCheatCommon_LogEventOptions
impl !Sync for _tagEOS_AntiCheatCommon_LogEventOptions
impl Unpin for _tagEOS_AntiCheatCommon_LogEventOptions
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_LogEventOptions
impl UnwindSafe for _tagEOS_AntiCheatCommon_LogEventOptions
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