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