#[repr(C)]pub struct _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo {
pub ClientData: *mut c_void,
pub ClientHandle: EOS_AntiCheatCommon_ClientHandle,
pub ClientAction: EOS_EAntiCheatCommonClientAction,
pub ActionReasonCode: EOS_EAntiCheatCommonClientActionReason,
pub ActionReasonDetailsString: *const c_char,
}Expand description
Structure containing details about a required client/peer action
Fields§
§ClientData: *mut c_voidCaller-specified context data
ClientHandle: EOS_AntiCheatCommon_ClientHandleThe identifier of the client/peer that this action applies to. See the RegisterClient and RegisterPeer functions.
ClientAction: EOS_EAntiCheatCommonClientActionThe action that must be applied to the specified client/peer
ActionReasonCode: EOS_EAntiCheatCommonClientActionReasonCode indicating the reason for the action. This can be displayed to the affected player.
ActionReasonDetailsString: *const c_charString containing details about the action reason. This can be displayed to the affected player.
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl Clone for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
fn clone(&self) -> _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
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_OnClientActionRequiredCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl !Send for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl !Sync for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl Unpin for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
impl UnwindSafe for _tagEOS_AntiCheatCommon_OnClientActionRequiredCallbackInfo
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