pub struct AuthenticateWithOrganizationSelectionParams {
pub pending_authentication_token: SecretString,
pub organization_id: String,
pub ip_address: Option<String>,
pub device_id: Option<String>,
pub user_agent: Option<String>,
}Fields§
§pending_authentication_token: SecretStringThe pending authentication token from a previous authentication attempt.
Required.
organization_id: StringThe ID of the organization the user selected.
Required.
ip_address: Option<String>The IP address of the user’s request.
device_id: Option<String>A unique identifier for the device.
user_agent: Option<String>The user agent string from the user’s browser.
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticateWithOrganizationSelectionParams
impl Clone for AuthenticateWithOrganizationSelectionParams
Source§fn clone(&self) -> AuthenticateWithOrganizationSelectionParams
fn clone(&self) -> AuthenticateWithOrganizationSelectionParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AuthenticateWithOrganizationSelectionParams
impl RefUnwindSafe for AuthenticateWithOrganizationSelectionParams
impl Send for AuthenticateWithOrganizationSelectionParams
impl Sync for AuthenticateWithOrganizationSelectionParams
impl Unpin for AuthenticateWithOrganizationSelectionParams
impl UnsafeUnpin for AuthenticateWithOrganizationSelectionParams
impl UnwindSafe for AuthenticateWithOrganizationSelectionParams
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