#[non_exhaustive]pub struct CreateIpamPoolOutputBuilder { /* private fields */ }
Expand description
A builder for CreateIpamPoolOutput
.
Implementations§
source§impl CreateIpamPoolOutputBuilder
impl CreateIpamPoolOutputBuilder
sourcepub fn set_ipam_pool(self, input: Option<IpamPool>) -> Self
pub fn set_ipam_pool(self, input: Option<IpamPool>) -> Self
Information about the IPAM pool created.
sourcepub fn get_ipam_pool(&self) -> &Option<IpamPool>
pub fn get_ipam_pool(&self) -> &Option<IpamPool>
Information about the IPAM pool created.
sourcepub fn build(self) -> CreateIpamPoolOutput
pub fn build(self) -> CreateIpamPoolOutput
Consumes the builder and constructs a CreateIpamPoolOutput
.
Trait Implementations§
source§impl Clone for CreateIpamPoolOutputBuilder
impl Clone for CreateIpamPoolOutputBuilder
source§fn clone(&self) -> CreateIpamPoolOutputBuilder
fn clone(&self) -> CreateIpamPoolOutputBuilder
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 CreateIpamPoolOutputBuilder
impl Debug for CreateIpamPoolOutputBuilder
source§impl Default for CreateIpamPoolOutputBuilder
impl Default for CreateIpamPoolOutputBuilder
source§fn default() -> CreateIpamPoolOutputBuilder
fn default() -> CreateIpamPoolOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateIpamPoolOutputBuilder
impl PartialEq for CreateIpamPoolOutputBuilder
source§fn eq(&self, other: &CreateIpamPoolOutputBuilder) -> bool
fn eq(&self, other: &CreateIpamPoolOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateIpamPoolOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateIpamPoolOutputBuilder
impl RefUnwindSafe for CreateIpamPoolOutputBuilder
impl Send for CreateIpamPoolOutputBuilder
impl Sync for CreateIpamPoolOutputBuilder
impl Unpin for CreateIpamPoolOutputBuilder
impl UnwindSafe for CreateIpamPoolOutputBuilder
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.