#[repr(C)]pub struct _tagEOS_AntiCheatServer_UnprotectMessageOptions {
pub ApiVersion: i32,
pub ClientHandle: EOS_AntiCheatCommon_ClientHandle,
pub DataLengthBytes: u32,
pub Data: *const c_void,
pub OutBufferSizeBytes: u32,
}Expand description
Input parameters for the EOS_AntiCheatServer_UnprotectMessage function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATSERVER_UNPROTECTMESSAGE_API_LATEST.
ClientHandle: EOS_AntiCheatCommon_ClientHandleLocally unique value describing the remote user from whom the message was received
DataLengthBytes: u32Length in bytes of input
Data: *const c_voidThe data to decrypt
OutBufferSizeBytes: u32The size in bytes of OutBuffer
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl Clone for _tagEOS_AntiCheatServer_UnprotectMessageOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatServer_UnprotectMessageOptions
fn clone(&self) -> _tagEOS_AntiCheatServer_UnprotectMessageOptions
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_UnprotectMessageOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl RefUnwindSafe for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl !Send for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl !Sync for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl Unpin for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl UnsafeUnpin for _tagEOS_AntiCheatServer_UnprotectMessageOptions
impl UnwindSafe for _tagEOS_AntiCheatServer_UnprotectMessageOptions
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