#[repr(C)]pub struct _tagEOS_Connect_QueryExternalAccountMappingsOptions {
pub ApiVersion: i32,
pub LocalUserId: EOS_ProductUserId,
pub AccountIdType: EOS_EExternalAccountType,
pub ExternalAccountIds: *mut *const c_char,
pub ExternalAccountIdCount: u32,
}Expand description
Input parameters for the EOS_Connect_QueryExternalAccountMappings function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_CONNECT_QUERYEXTERNALACCOUNTMAPPINGS_API_LATEST.
LocalUserId: EOS_ProductUserIdThe Product User ID of the existing, logged-in user who is querying account mappings.
AccountIdType: EOS_EExternalAccountTypeExternal auth service supplying the account IDs in string form.
ExternalAccountIds: *mut *const c_charAn array of external account IDs to map to the product user ID representation.
ExternalAccountIdCount: u32Number of account IDs to query.
Trait Implementations§
Source§impl Clone for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl Clone for _tagEOS_Connect_QueryExternalAccountMappingsOptions
Source§fn clone(&self) -> _tagEOS_Connect_QueryExternalAccountMappingsOptions
fn clone(&self) -> _tagEOS_Connect_QueryExternalAccountMappingsOptions
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_Connect_QueryExternalAccountMappingsOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl RefUnwindSafe for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl !Send for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl !Sync for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl Unpin for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl UnsafeUnpin for _tagEOS_Connect_QueryExternalAccountMappingsOptions
impl UnwindSafe for _tagEOS_Connect_QueryExternalAccountMappingsOptions
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