pub struct CreateUserRequest {
pub display_name: String,
pub name: String,
pub organization_id: String,
pub password: String,
}Fields§
§display_name: StringThe display name for the new user.
name: StringThe name for the new user. Simple AD or AD Connector user names have a maximum length of 20. All others have a maximum length of 64.
organization_id: StringThe identifier of the organization for which the user is created.
password: StringThe password for the new user.
Trait Implementations§
Source§impl Clone for CreateUserRequest
impl Clone for CreateUserRequest
Source§fn clone(&self) -> CreateUserRequest
fn clone(&self) -> CreateUserRequest
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 moreSource§impl Debug for CreateUserRequest
impl Debug for CreateUserRequest
Source§impl Default for CreateUserRequest
impl Default for CreateUserRequest
Source§fn default() -> CreateUserRequest
fn default() -> CreateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateUserRequest
impl PartialEq for CreateUserRequest
Source§impl Serialize for CreateUserRequest
impl Serialize for CreateUserRequest
impl StructuralPartialEq for CreateUserRequest
Auto Trait Implementations§
impl Freeze for CreateUserRequest
impl RefUnwindSafe for CreateUserRequest
impl Send for CreateUserRequest
impl Sync for CreateUserRequest
impl Unpin for CreateUserRequest
impl UnwindSafe for CreateUserRequest
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