#[repr(C)]pub struct _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo {
pub ClientData: *mut c_void,
pub LocalUserId: EOS_ProductUserId,
pub UiEventId: EOS_UI_EventId,
}Expand description
Output parameters for the EOS_Sessions_OnJoinSessionAcceptedCallback function.
Fields§
§ClientData: *mut c_voidContext that was passed into EOS_Sessions_AddNotifyJoinSessionAccepted
LocalUserId: EOS_ProductUserIdThe Product User ID for the user who initialized the game
UiEventId: EOS_UI_EventIdThe UI Event associated with this Join Game event. This should be used with EOS_Sessions_CopySessionHandleByUiEventId to get a handle to be used when calling EOS_Sessions_JoinSession.
Trait Implementations§
Source§impl Clone for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl Clone for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
Source§fn clone(&self) -> _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
fn clone(&self) -> _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
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_JoinSessionAcceptedCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl RefUnwindSafe for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl !Send for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl !Sync for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl Unpin for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl UnsafeUnpin for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
impl UnwindSafe for _tagEOS_Sessions_JoinSessionAcceptedCallbackInfo
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