#[non_exhaustive]pub struct DeleteFargateProfileOutput {
pub fargate_profile: Option<FargateProfile>,
/* private fields */
}
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.fargate_profile: Option<FargateProfile>
The deleted Fargate profile.
Implementations§
source§impl DeleteFargateProfileOutput
impl DeleteFargateProfileOutput
sourcepub fn fargate_profile(&self) -> Option<&FargateProfile>
pub fn fargate_profile(&self) -> Option<&FargateProfile>
The deleted Fargate profile.
source§impl DeleteFargateProfileOutput
impl DeleteFargateProfileOutput
sourcepub fn builder() -> DeleteFargateProfileOutputBuilder
pub fn builder() -> DeleteFargateProfileOutputBuilder
Creates a new builder-style object to manufacture DeleteFargateProfileOutput
.
Trait Implementations§
source§impl Clone for DeleteFargateProfileOutput
impl Clone for DeleteFargateProfileOutput
source§fn clone(&self) -> DeleteFargateProfileOutput
fn clone(&self) -> DeleteFargateProfileOutput
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 DeleteFargateProfileOutput
impl Debug for DeleteFargateProfileOutput
source§impl PartialEq for DeleteFargateProfileOutput
impl PartialEq for DeleteFargateProfileOutput
source§fn eq(&self, other: &DeleteFargateProfileOutput) -> bool
fn eq(&self, other: &DeleteFargateProfileOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteFargateProfileOutput
impl RequestId for DeleteFargateProfileOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteFargateProfileOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteFargateProfileOutput
impl Send for DeleteFargateProfileOutput
impl Sync for DeleteFargateProfileOutput
impl Unpin for DeleteFargateProfileOutput
impl UnwindSafe for DeleteFargateProfileOutput
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