Enum ory_client::models::login_flow_state::LoginFlowState
source · pub enum LoginFlowState {
ChooseMethod,
SentEmail,
PassedChallenge,
}Expand description
LoginFlowState : The state represents the state of the login flow. choose_method: ask the user to choose a method (e.g. login account via email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the login challenge was passed. The state represents the state of the login flow. choose_method: ask the user to choose a method (e.g. login account via email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the login challenge was passed.
Variants§
Trait Implementations§
source§impl Clone for LoginFlowState
impl Clone for LoginFlowState
source§fn clone(&self) -> LoginFlowState
fn clone(&self) -> LoginFlowState
Returns a copy 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 LoginFlowState
impl Debug for LoginFlowState
source§impl<'de> Deserialize<'de> for LoginFlowState
impl<'de> Deserialize<'de> for LoginFlowState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for LoginFlowState
impl Hash for LoginFlowState
source§impl Ord for LoginFlowState
impl Ord for LoginFlowState
source§fn cmp(&self, other: &LoginFlowState) -> Ordering
fn cmp(&self, other: &LoginFlowState) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<LoginFlowState> for LoginFlowState
impl PartialEq<LoginFlowState> for LoginFlowState
source§fn eq(&self, other: &LoginFlowState) -> bool
fn eq(&self, other: &LoginFlowState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<LoginFlowState> for LoginFlowState
impl PartialOrd<LoginFlowState> for LoginFlowState
source§fn partial_cmp(&self, other: &LoginFlowState) -> Option<Ordering>
fn partial_cmp(&self, other: &LoginFlowState) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for LoginFlowState
impl Serialize for LoginFlowState
source§impl ToString for LoginFlowState
impl ToString for LoginFlowState
impl Copy for LoginFlowState
impl Eq for LoginFlowState
impl StructuralEq for LoginFlowState
impl StructuralPartialEq for LoginFlowState
Auto Trait Implementations§
impl RefUnwindSafe for LoginFlowState
impl Send for LoginFlowState
impl Sync for LoginFlowState
impl Unpin for LoginFlowState
impl UnwindSafe for LoginFlowState
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.