#[non_exhaustive]pub struct DeleteUserProfileInput {
    pub domain_id: Option<String>,
    pub user_profile_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.domain_id: Option<String>The domain ID.
user_profile_name: Option<String>The user profile name.
Implementations§
source§impl DeleteUserProfileInput
 
impl DeleteUserProfileInput
sourcepub fn builder() -> DeleteUserProfileInputBuilder
 
pub fn builder() -> DeleteUserProfileInputBuilder
Creates a new builder-style object to manufacture DeleteUserProfileInput.
Trait Implementations§
source§impl Clone for DeleteUserProfileInput
 
impl Clone for DeleteUserProfileInput
source§fn clone(&self) -> DeleteUserProfileInput
 
fn clone(&self) -> DeleteUserProfileInput
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 DeleteUserProfileInput
 
impl Debug for DeleteUserProfileInput
source§impl PartialEq for DeleteUserProfileInput
 
impl PartialEq for DeleteUserProfileInput
source§fn eq(&self, other: &DeleteUserProfileInput) -> bool
 
fn eq(&self, other: &DeleteUserProfileInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteUserProfileInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteUserProfileInput
impl Send for DeleteUserProfileInput
impl Sync for DeleteUserProfileInput
impl Unpin for DeleteUserProfileInput
impl UnwindSafe for DeleteUserProfileInput
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.