#[non_exhaustive]pub struct DeleteUserProfileInput {
pub user_arn: 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.user_arn: Option<String>
The Amazon Resource Name (ARN) of the user to delete from AWS CodeStar.
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<DeleteUserProfileInput> for DeleteUserProfileInput
impl PartialEq<DeleteUserProfileInput> 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