#[repr(C)]pub struct _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions {
pub ApiVersion: i32,
pub ClientHandle: EOS_AntiCheatCommon_ClientHandle,
pub DataLengthBytes: u32,
pub Data: *const c_void,
}Expand description
Input parameters for the EOS_AntiCheatServer_ReceiveMessageFromClient function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATSERVER_RECEIVEMESSAGEFROMCLIENT_API_LATEST.
ClientHandle: EOS_AntiCheatCommon_ClientHandleLocally unique value describing the corresponding remote user, as previously passed to RegisterClient
DataLengthBytes: u32The size of the data received
Data: *const c_voidThe data received
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl Clone for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
fn clone(&self) -> _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
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_AntiCheatServer_ReceiveMessageFromClientOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl RefUnwindSafe for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl !Send for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl !Sync for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl Unpin for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl UnsafeUnpin for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
impl UnwindSafe for _tagEOS_AntiCheatServer_ReceiveMessageFromClientOptions
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