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