#[non_exhaustive]pub struct DeletePublicIpv4PoolOutput {
pub return_value: Option<bool>,
/* 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.return_value: Option<bool>
Information about the result of deleting the public IPv4 pool.
Implementations§
source§impl DeletePublicIpv4PoolOutput
impl DeletePublicIpv4PoolOutput
sourcepub fn return_value(&self) -> Option<bool>
pub fn return_value(&self) -> Option<bool>
Information about the result of deleting the public IPv4 pool.
source§impl DeletePublicIpv4PoolOutput
impl DeletePublicIpv4PoolOutput
sourcepub fn builder() -> DeletePublicIpv4PoolOutputBuilder
pub fn builder() -> DeletePublicIpv4PoolOutputBuilder
Creates a new builder-style object to manufacture DeletePublicIpv4PoolOutput
.
Trait Implementations§
source§impl Clone for DeletePublicIpv4PoolOutput
impl Clone for DeletePublicIpv4PoolOutput
source§fn clone(&self) -> DeletePublicIpv4PoolOutput
fn clone(&self) -> DeletePublicIpv4PoolOutput
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 DeletePublicIpv4PoolOutput
impl Debug for DeletePublicIpv4PoolOutput
source§impl PartialEq<DeletePublicIpv4PoolOutput> for DeletePublicIpv4PoolOutput
impl PartialEq<DeletePublicIpv4PoolOutput> for DeletePublicIpv4PoolOutput
source§fn eq(&self, other: &DeletePublicIpv4PoolOutput) -> bool
fn eq(&self, other: &DeletePublicIpv4PoolOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeletePublicIpv4PoolOutput
impl RequestId for DeletePublicIpv4PoolOutput
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 DeletePublicIpv4PoolOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeletePublicIpv4PoolOutput
impl Send for DeletePublicIpv4PoolOutput
impl Sync for DeletePublicIpv4PoolOutput
impl Unpin for DeletePublicIpv4PoolOutput
impl UnwindSafe for DeletePublicIpv4PoolOutput
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