Enum rive_models::payload::LoginPayload
source · pub enum LoginPayload {
Email {
email: String,
password: String,
friendly_name: Option<String>,
},
MFA {
mfa_ticket: String,
mfa_response: Option<MFAData>,
friendly_name: Option<String>,
},
}Expand description
Login data
Variants§
Trait Implementations§
source§impl Clone for LoginPayload
impl Clone for LoginPayload
source§fn clone(&self) -> LoginPayload
fn clone(&self) -> LoginPayload
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 more