pub struct MeshIstio {
pub mesh_uid: Option<String>,
pub service_name: Option<String>,
pub service_namespace: Option<String>,
}
Expand description
Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8 will have their services ingested as this type.
This type is not used in any activity, and only used as part of another schema.
Fields§
§mesh_uid: Option<String>
Identifier for the mesh in which this Istio service is defined. Corresponds to the mesh_uid metric label in Istio metrics.
service_name: Option<String>
The name of the Istio service underlying this service. Corresponds to the destination_service_name metric label in Istio metrics.
service_namespace: Option<String>
The namespace of the Istio service underlying this service. Corresponds to the destination_service_namespace metric label in Istio metrics.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeshIstio
impl<'de> Deserialize<'de> for MeshIstio
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for MeshIstio
Auto Trait Implementations§
impl Freeze for MeshIstio
impl RefUnwindSafe for MeshIstio
impl Send for MeshIstio
impl Sync for MeshIstio
impl Unpin for MeshIstio
impl UnwindSafe for MeshIstio
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more