#[non_exhaustive]pub struct DeletePublicIpv4PoolInput {
pub dry_run: Option<bool>,
pub pool_id: 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.dry_run: Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
pool_id: Option<String>
The ID of the public IPv4 pool you want to delete.
Implementations§
source§impl DeletePublicIpv4PoolInput
impl DeletePublicIpv4PoolInput
source§impl DeletePublicIpv4PoolInput
impl DeletePublicIpv4PoolInput
sourcepub fn builder() -> DeletePublicIpv4PoolInputBuilder
pub fn builder() -> DeletePublicIpv4PoolInputBuilder
Creates a new builder-style object to manufacture DeletePublicIpv4PoolInput
.
Trait Implementations§
source§impl Clone for DeletePublicIpv4PoolInput
impl Clone for DeletePublicIpv4PoolInput
source§fn clone(&self) -> DeletePublicIpv4PoolInput
fn clone(&self) -> DeletePublicIpv4PoolInput
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 DeletePublicIpv4PoolInput
impl Debug for DeletePublicIpv4PoolInput
source§impl PartialEq<DeletePublicIpv4PoolInput> for DeletePublicIpv4PoolInput
impl PartialEq<DeletePublicIpv4PoolInput> for DeletePublicIpv4PoolInput
source§fn eq(&self, other: &DeletePublicIpv4PoolInput) -> bool
fn eq(&self, other: &DeletePublicIpv4PoolInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeletePublicIpv4PoolInput
Auto Trait Implementations§
impl RefUnwindSafe for DeletePublicIpv4PoolInput
impl Send for DeletePublicIpv4PoolInput
impl Sync for DeletePublicIpv4PoolInput
impl Unpin for DeletePublicIpv4PoolInput
impl UnwindSafe for DeletePublicIpv4PoolInput
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