#[repr(C)]pub struct _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo {
pub ClientData: *mut c_void,
pub UiEventId: EOS_UI_EventId,
pub LocalUserId: EOS_ProductUserId,
pub TargetNativeAccountType: EOS_IntegratedPlatformType,
pub TargetUserNativeAccountId: *const c_char,
pub LobbyId: EOS_LobbyId,
}Expand description
Output parameters for the EOS_Lobby_OnSendLobbyNativeInviteRequestedCallback Function.
Fields§
§ClientData: *mut c_voidContext that was passed into EOS_Lobby_AddNotifySendLobbyNativeInviteRequested
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.
LobbyId: EOS_LobbyIdLobby ID that the user is being invited to
Trait Implementations§
Source§impl Clone for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl Clone for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
Source§fn clone(&self) -> _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
fn clone(&self) -> _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
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_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl RefUnwindSafe for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl !Send for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl !Sync for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl Unpin for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl UnsafeUnpin for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
impl UnwindSafe for _tagEOS_Lobby_SendLobbyNativeInviteRequestedCallbackInfo
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