#[repr(C)]pub struct _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo {
pub ResultCode: EOS_EResult,
pub ClientData: *mut c_void,
pub RoomName: *const c_char,
pub ClientBaseUrl: *const c_char,
pub QueryId: u32,
pub TokenCount: u32,
}Expand description
Data containing the result information for a query join room token request.
Fields§
§ResultCode: EOS_EResultThe EOS_EResult code for the operation. EOS_Success indicates that the operation succeeded; other codes indicate errors.
ClientData: *mut c_voidContext that was passed into EOS_RTCAdmin_QueryJoinRoomToken.
RoomName: *const c_charRoom the request was made for.
ClientBaseUrl: *const c_charURL passed to backend to join room.
QueryId: u32If the query completed successfully, this contains an identifier that should be used to retrieve the tokens. This identifier is only valid for the duration of the callback.
@see EOS_RTCAdmin_CopyUserTokenByIndex @see EOS_RTCAdmin_CopyUserTokenByUserId
TokenCount: u32How many token received as result of the query
Trait Implementations§
Source§impl Clone for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl Clone for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
Source§fn clone(&self) -> _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
fn clone(&self) -> _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
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_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl RefUnwindSafe for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl !Send for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl !Sync for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl Unpin for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl UnsafeUnpin for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
impl UnwindSafe for _tagEOS_RTCAdmin_QueryJoinRoomTokenCompleteCallbackInfo
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