#[repr(C)]pub struct _tagEOS_UserInfo_ExternalUserInfo {
pub ApiVersion: i32,
pub AccountType: EOS_EExternalAccountType,
pub AccountId: *const c_char,
pub DisplayName: *const c_char,
pub DisplayNameSanitized: *const c_char,
}Expand description
Contains information about a single external user info.
Fields§
§ApiVersion: i32API Version: Set this to EOS_USERINFO_EXTERNALUSERINFO_API_LATEST.
AccountType: EOS_EExternalAccountTypeThe type of the external account
AccountId: *const c_charThe ID of the external account. Can be null
DisplayName: *const c_charThe display name of the external account (un-sanitized). Can be null
DisplayNameSanitized: *const c_charThe display name of the external account (sanitized). Can be null
Trait Implementations§
Source§impl Clone for _tagEOS_UserInfo_ExternalUserInfo
impl Clone for _tagEOS_UserInfo_ExternalUserInfo
Source§fn clone(&self) -> _tagEOS_UserInfo_ExternalUserInfo
fn clone(&self) -> _tagEOS_UserInfo_ExternalUserInfo
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_UserInfo_ExternalUserInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_UserInfo_ExternalUserInfo
impl RefUnwindSafe for _tagEOS_UserInfo_ExternalUserInfo
impl !Send for _tagEOS_UserInfo_ExternalUserInfo
impl !Sync for _tagEOS_UserInfo_ExternalUserInfo
impl Unpin for _tagEOS_UserInfo_ExternalUserInfo
impl UnsafeUnpin for _tagEOS_UserInfo_ExternalUserInfo
impl UnwindSafe for _tagEOS_UserInfo_ExternalUserInfo
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