#[repr(C)]pub struct _tagEOS_Auth_AccountFeatureRestrictedInfo {
pub ApiVersion: i32,
pub VerificationURI: *const c_char,
}Expand description
Intermediate data needed to complete account restriction verification during login flow, returned by EOS_Auth_LoginCallbackInfo when the ResultCode is EOS_Auth_AccountFeatureRestricted. The URI inside should be exposed to the user for entry in a web browser. The URI must be copied out of this struct before completion of the callback.
Fields§
§ApiVersion: i32API Version: Set this to EOS_AUTH_ACCOUNTFEATURERESTRICTEDINFO_API_LATEST.
VerificationURI: *const c_charThe end-user verification URI. Users must be asked to open the page in a browser to address the restrictions.
Trait Implementations§
Source§impl Clone for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl Clone for _tagEOS_Auth_AccountFeatureRestrictedInfo
Source§fn clone(&self) -> _tagEOS_Auth_AccountFeatureRestrictedInfo
fn clone(&self) -> _tagEOS_Auth_AccountFeatureRestrictedInfo
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_Auth_AccountFeatureRestrictedInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl RefUnwindSafe for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl !Send for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl !Sync for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl Unpin for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl UnsafeUnpin for _tagEOS_Auth_AccountFeatureRestrictedInfo
impl UnwindSafe for _tagEOS_Auth_AccountFeatureRestrictedInfo
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