pub struct DeleteUserRequest {
pub authentication_type: String,
pub user_name: String,
}
Fields§
§authentication_type: String
The authentication type for the user. You must specify USERPOOL.
user_name: String
The email address of the user.
Users' email addresses are case-sensitive.
Trait Implementations§
Source§impl Clone for DeleteUserRequest
impl Clone for DeleteUserRequest
Source§fn clone(&self) -> DeleteUserRequest
fn clone(&self) -> DeleteUserRequest
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 Debug for DeleteUserRequest
impl Debug for DeleteUserRequest
Source§impl Default for DeleteUserRequest
impl Default for DeleteUserRequest
Source§fn default() -> DeleteUserRequest
fn default() -> DeleteUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteUserRequest
impl PartialEq for DeleteUserRequest
Source§impl Serialize for DeleteUserRequest
impl Serialize for DeleteUserRequest
impl StructuralPartialEq for DeleteUserRequest
Auto Trait Implementations§
impl Freeze for DeleteUserRequest
impl RefUnwindSafe for DeleteUserRequest
impl Send for DeleteUserRequest
impl Sync for DeleteUserRequest
impl Unpin for DeleteUserRequest
impl UnwindSafe for DeleteUserRequest
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