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