#[repr(C)]pub struct _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions {
pub ApiVersion: i32,
pub PlayerHandle: EOS_AntiCheatCommon_ClientHandle,
pub AbilityId: u32,
pub AbilityDurationMs: u32,
pub AbilityCooldownMs: u32,
}Expand description
Input parameters for the EOS_AntiCheatServer_LogPlayerUseAbility function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGPLAYERUSEABILITY_API_LATEST.
PlayerHandle: EOS_AntiCheatCommon_ClientHandleLocally unique value used in RegisterClient/RegisterPeer
AbilityId: u32Game defined unique identifier for the ability being used
AbilityDurationMs: u32Duration of the ability effect in milliseconds. If not applicable, use 0.
AbilityCooldownMs: u32Cooldown until the ability can be used again in milliseconds. If not applicable, use 0.
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl Clone for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
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_LogPlayerUseAbilityOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl !Send for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl !Sync for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl Unpin for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
impl UnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerUseAbilityOptions
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