pub struct MembershipCreateUserParameters {
pub email: String,
pub first_name: String,
pub last_name: String,
}Fields§
§email: StringThe email address of the new user.
first_name: StringThe first name of the new user.
last_name: StringThe last name of the new user.
Trait Implementations§
Source§impl Clone for MembershipCreateUserParameters
impl Clone for MembershipCreateUserParameters
Source§fn clone(&self) -> MembershipCreateUserParameters
fn clone(&self) -> MembershipCreateUserParameters
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for MembershipCreateUserParameters
impl RefUnwindSafe for MembershipCreateUserParameters
impl Send for MembershipCreateUserParameters
impl Sync for MembershipCreateUserParameters
impl Unpin for MembershipCreateUserParameters
impl UnwindSafe for MembershipCreateUserParameters
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