#[repr(C)]pub struct _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo {
pub ClientData: *mut c_void,
pub UiEventId: EOS_UI_EventId,
pub LocalUserId: EOS_ProductUserId,
pub TargetNativeAccountType: EOS_IntegratedPlatformType,
pub TargetUserNativeAccountId: *const c_char,
pub SessionId: *const c_char,
}Expand description
Output parameters for the EOS_Sessions_OnSendSessionNativeInviteRequestedCallback Function.
Fields§
§ClientData: *mut c_voidContext that was passed into EOS_Sessions_AddNotifySendSessionNativeInviteRequested
UiEventId: EOS_UI_EventIdIdentifies this event which will need to be acknowledged with EOS_UI_AcknowledgeEventId(). @see EOS_UI_AcknowledgeEventId
LocalUserId: EOS_ProductUserIdThe Product User ID of the local user who is inviting.
TargetNativeAccountType: EOS_IntegratedPlatformTypeThe Native Platform Account Type. If only a single integrated platform is configured then this will always reference that platform.
TargetUserNativeAccountId: *const c_charThe Native Platform Account ID of the target user being invited.
SessionId: *const c_charSession ID that the user is being invited to
Trait Implementations§
Source§impl Clone for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl Clone for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
Source§fn clone(&self) -> _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
fn clone(&self) -> _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
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_Sessions_SendSessionNativeInviteRequestedCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl RefUnwindSafe for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl !Send for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl !Sync for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl Unpin for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl UnsafeUnpin for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
impl UnwindSafe for _tagEOS_Sessions_SendSessionNativeInviteRequestedCallbackInfo
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