pub struct MeshData {
pub mesh_name: String,
pub metadata: ResourceMetadata,
pub spec: MeshSpec,
pub status: MeshStatus,
}
Expand description
An object that represents a service mesh returned by a describe operation.
Fields§
§mesh_name: String
The name of the service mesh.
metadata: ResourceMetadata
The associated metadata for the service mesh.
spec: MeshSpec
The associated specification for the service mesh.
status: MeshStatus
The status of the service mesh.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeshData
impl<'de> Deserialize<'de> for MeshData
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 StructuralPartialEq for MeshData
Auto Trait Implementations§
impl Freeze for MeshData
impl RefUnwindSafe for MeshData
impl Send for MeshData
impl Sync for MeshData
impl Unpin for MeshData
impl UnwindSafe for MeshData
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