#[repr(C)]pub struct _tagEOS_Auth_LoginOptions {
pub ApiVersion: i32,
pub Credentials: *const EOS_Auth_Credentials,
pub ScopeFlags: EOS_EAuthScopeFlags,
pub LoginFlags: u64,
}Expand description
Input parameters for the EOS_Auth_Login function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_AUTH_LOGIN_API_LATEST.
Credentials: *const EOS_Auth_CredentialsCredentials specified for a given login method.
ScopeFlags: EOS_EAuthScopeFlagsAuth scope flags are permissions to request from the user while they are logging in. This is a bitwise-or union of EOS_EAuthScopeFlags flags defined above.
LoginFlags: u64Optional flags for the desired login behavior, e.g. EOS_LF_NO_USER_INTERFACE. This is a bitwise-or union of the defined flags.
Trait Implementations§
Source§impl Clone for _tagEOS_Auth_LoginOptions
impl Clone for _tagEOS_Auth_LoginOptions
Source§fn clone(&self) -> _tagEOS_Auth_LoginOptions
fn clone(&self) -> _tagEOS_Auth_LoginOptions
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 moreSource§impl Debug for _tagEOS_Auth_LoginOptions
impl Debug for _tagEOS_Auth_LoginOptions
Source§impl Default for _tagEOS_Auth_LoginOptions
impl Default for _tagEOS_Auth_LoginOptions
impl Copy for _tagEOS_Auth_LoginOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_Auth_LoginOptions
impl RefUnwindSafe for _tagEOS_Auth_LoginOptions
impl !Send for _tagEOS_Auth_LoginOptions
impl !Sync for _tagEOS_Auth_LoginOptions
impl Unpin for _tagEOS_Auth_LoginOptions
impl UnsafeUnpin for _tagEOS_Auth_LoginOptions
impl UnwindSafe for _tagEOS_Auth_LoginOptions
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