#[repr(C)]pub struct _tagEOS_Stats_IngestStatCompleteCallbackInfo {
pub ResultCode: EOS_EResult,
pub ClientData: *mut c_void,
pub LocalUserId: EOS_ProductUserId,
pub TargetUserId: EOS_ProductUserId,
}Expand description
Data containing the result information for an ingest stat request.
NOTE: A result code of EOS_Success indicates the ingest request reached the server successfully, but does not guarantee successful processing. For example, if an incorrect StatName value is provided in the ingest call, processing may still fail.
Fields§
§ResultCode: EOS_EResultResult code for the operation. EOS_Success is returned for a successful request, other codes indicate an error.
ClientData: *mut c_voidContext that was passed into EOS_Stats_IngestStat.
LocalUserId: EOS_ProductUserIdThe Product User ID for the user requesting the ingest
TargetUserId: EOS_ProductUserIdThe Product User ID for the user whose stat is being ingested
Trait Implementations§
Source§impl Clone for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl Clone for _tagEOS_Stats_IngestStatCompleteCallbackInfo
Source§fn clone(&self) -> _tagEOS_Stats_IngestStatCompleteCallbackInfo
fn clone(&self) -> _tagEOS_Stats_IngestStatCompleteCallbackInfo
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_Stats_IngestStatCompleteCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl RefUnwindSafe for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl !Send for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl !Sync for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl Unpin for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl UnsafeUnpin for _tagEOS_Stats_IngestStatCompleteCallbackInfo
impl UnwindSafe for _tagEOS_Stats_IngestStatCompleteCallbackInfo
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