#[non_exhaustive]pub struct DeleteIpamPoolOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteIpamPoolOutput
.
Implementations§
source§impl DeleteIpamPoolOutputBuilder
impl DeleteIpamPoolOutputBuilder
sourcepub fn set_ipam_pool(self, input: Option<IpamPool>) -> Self
pub fn set_ipam_pool(self, input: Option<IpamPool>) -> Self
Information about the results of the deletion.
sourcepub fn get_ipam_pool(&self) -> &Option<IpamPool>
pub fn get_ipam_pool(&self) -> &Option<IpamPool>
Information about the results of the deletion.
sourcepub fn build(self) -> DeleteIpamPoolOutput
pub fn build(self) -> DeleteIpamPoolOutput
Consumes the builder and constructs a DeleteIpamPoolOutput
.
Trait Implementations§
source§impl Clone for DeleteIpamPoolOutputBuilder
impl Clone for DeleteIpamPoolOutputBuilder
source§fn clone(&self) -> DeleteIpamPoolOutputBuilder
fn clone(&self) -> DeleteIpamPoolOutputBuilder
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 DeleteIpamPoolOutputBuilder
impl Debug for DeleteIpamPoolOutputBuilder
source§impl Default for DeleteIpamPoolOutputBuilder
impl Default for DeleteIpamPoolOutputBuilder
source§fn default() -> DeleteIpamPoolOutputBuilder
fn default() -> DeleteIpamPoolOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteIpamPoolOutputBuilder
impl PartialEq for DeleteIpamPoolOutputBuilder
source§fn eq(&self, other: &DeleteIpamPoolOutputBuilder) -> bool
fn eq(&self, other: &DeleteIpamPoolOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteIpamPoolOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteIpamPoolOutputBuilder
impl RefUnwindSafe for DeleteIpamPoolOutputBuilder
impl Send for DeleteIpamPoolOutputBuilder
impl Sync for DeleteIpamPoolOutputBuilder
impl Unpin for DeleteIpamPoolOutputBuilder
impl UnwindSafe for DeleteIpamPoolOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.