Struct ory_client::models::update_recovery_flow_with_link_method::UpdateRecoveryFlowWithLinkMethod
source · pub struct UpdateRecoveryFlowWithLinkMethod {
pub csrf_token: Option<String>,
pub email: String,
pub method: MethodEnum,
}Expand description
UpdateRecoveryFlowWithLinkMethod : Update Recovery Flow with Link Method
Fields§
§csrf_token: Option<String>Sending the anti-csrf token is only required for browser login flows.
email: StringEmail to Recover Needs to be set when initiating the flow. If the email is a registered recovery email, a recovery link will be sent. If the email is not known, a email with details on what happened will be sent instead. format: email
method: MethodEnumMethod is the method that should be used for this recovery flow Allowed values are link and code link RecoveryStrategyLink code RecoveryStrategyCode
Implementations§
source§impl UpdateRecoveryFlowWithLinkMethod
impl UpdateRecoveryFlowWithLinkMethod
sourcepub fn new(
email: String,
method: MethodEnum
) -> UpdateRecoveryFlowWithLinkMethod
pub fn new( email: String, method: MethodEnum ) -> UpdateRecoveryFlowWithLinkMethod
Update Recovery Flow with Link Method
Trait Implementations§
source§impl Clone for UpdateRecoveryFlowWithLinkMethod
impl Clone for UpdateRecoveryFlowWithLinkMethod
source§fn clone(&self) -> UpdateRecoveryFlowWithLinkMethod
fn clone(&self) -> UpdateRecoveryFlowWithLinkMethod
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<'de> Deserialize<'de> for UpdateRecoveryFlowWithLinkMethod
impl<'de> Deserialize<'de> for UpdateRecoveryFlowWithLinkMethod
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 PartialEq for UpdateRecoveryFlowWithLinkMethod
impl PartialEq for UpdateRecoveryFlowWithLinkMethod
source§fn eq(&self, other: &UpdateRecoveryFlowWithLinkMethod) -> bool
fn eq(&self, other: &UpdateRecoveryFlowWithLinkMethod) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRecoveryFlowWithLinkMethod
Auto Trait Implementations§
impl RefUnwindSafe for UpdateRecoveryFlowWithLinkMethod
impl Send for UpdateRecoveryFlowWithLinkMethod
impl Sync for UpdateRecoveryFlowWithLinkMethod
impl Unpin for UpdateRecoveryFlowWithLinkMethod
impl UnwindSafe for UpdateRecoveryFlowWithLinkMethod
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