#[non_exhaustive]pub struct DeleteAppImageConfigInput {
pub app_image_config_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.app_image_config_name: Option<String>
The name of the AppImageConfig to delete.
Implementations§
source§impl DeleteAppImageConfigInput
impl DeleteAppImageConfigInput
sourcepub fn app_image_config_name(&self) -> Option<&str>
pub fn app_image_config_name(&self) -> Option<&str>
The name of the AppImageConfig to delete.
source§impl DeleteAppImageConfigInput
impl DeleteAppImageConfigInput
sourcepub fn builder() -> DeleteAppImageConfigInputBuilder
pub fn builder() -> DeleteAppImageConfigInputBuilder
Creates a new builder-style object to manufacture DeleteAppImageConfigInput
.
Trait Implementations§
source§impl Clone for DeleteAppImageConfigInput
impl Clone for DeleteAppImageConfigInput
source§fn clone(&self) -> DeleteAppImageConfigInput
fn clone(&self) -> DeleteAppImageConfigInput
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 DeleteAppImageConfigInput
impl Debug for DeleteAppImageConfigInput
source§impl PartialEq<DeleteAppImageConfigInput> for DeleteAppImageConfigInput
impl PartialEq<DeleteAppImageConfigInput> for DeleteAppImageConfigInput
source§fn eq(&self, other: &DeleteAppImageConfigInput) -> bool
fn eq(&self, other: &DeleteAppImageConfigInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteAppImageConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteAppImageConfigInput
impl Send for DeleteAppImageConfigInput
impl Sync for DeleteAppImageConfigInput
impl Unpin for DeleteAppImageConfigInput
impl UnwindSafe for DeleteAppImageConfigInput
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