pub struct SignupArgs {
pub email: String,
pub password: Option<String>,
pub password_confirmation: Option<String>,
pub authorizations_attributes: Vec<Provider>,
}Fields§
§email: String§password: Option<String>§password_confirmation: Option<String>Auto Trait Implementations§
impl Freeze for SignupArgs
impl RefUnwindSafe for SignupArgs
impl Send for SignupArgs
impl Sync for SignupArgs
impl Unpin for SignupArgs
impl UnwindSafe for SignupArgs
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