#[non_exhaustive]pub struct HttpInstanceSummary {
pub instance_id: Option<String>,
pub namespace_name: Option<String>,
pub service_name: Option<String>,
pub health_status: Option<HealthStatus>,
pub attributes: Option<HashMap<String, String>>,
}Expand description
In a response to a DiscoverInstances request, HttpInstanceSummary contains information about one instance that matches the values that you specified in the request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.instance_id: Option<String>The ID of an instance that matches the values that you specified in the request.
namespace_name: Option<String>
The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.
service_name: Option<String>The name of the service that you specified when you registered the instance.
health_status: Option<HealthStatus>If you configured health checking in the service, the current health status of the service instance.
attributes: Option<HashMap<String, String>>If you included any attributes when you registered the instance, the values of those attributes.
Implementations§
source§impl HttpInstanceSummary
impl HttpInstanceSummary
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The ID of an instance that matches the values that you specified in the request.
sourcepub fn namespace_name(&self) -> Option<&str>
pub fn namespace_name(&self) -> Option<&str>
The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service that you specified when you registered the instance.
sourcepub fn health_status(&self) -> Option<&HealthStatus>
pub fn health_status(&self) -> Option<&HealthStatus>
If you configured health checking in the service, the current health status of the service instance.
source§impl HttpInstanceSummary
impl HttpInstanceSummary
sourcepub fn builder() -> HttpInstanceSummaryBuilder
pub fn builder() -> HttpInstanceSummaryBuilder
Creates a new builder-style object to manufacture HttpInstanceSummary.
Trait Implementations§
source§impl Clone for HttpInstanceSummary
impl Clone for HttpInstanceSummary
source§fn clone(&self) -> HttpInstanceSummary
fn clone(&self) -> HttpInstanceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for HttpInstanceSummary
impl Debug for HttpInstanceSummary
source§impl PartialEq for HttpInstanceSummary
impl PartialEq for HttpInstanceSummary
impl StructuralPartialEq for HttpInstanceSummary
Auto Trait Implementations§
impl Freeze for HttpInstanceSummary
impl RefUnwindSafe for HttpInstanceSummary
impl Send for HttpInstanceSummary
impl Sync for HttpInstanceSummary
impl Unpin for HttpInstanceSummary
impl UnwindSafe for HttpInstanceSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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 more