pub struct RouteData {
pub mesh_name: String,
pub metadata: ResourceMetadata,
pub route_name: String,
pub spec: RouteSpec,
pub status: RouteStatus,
pub virtual_router_name: String,
}
Expand description
An object that represents a route returned by a describe operation.
Fields§
§mesh_name: String
The name of the service mesh that the route resides in.
metadata: ResourceMetadata
The associated metadata for the route.
route_name: String
The name of the route.
spec: RouteSpec
The specifications of the route.
status: RouteStatus
The status of the route.
virtual_router_name: String
The virtual router that the route is associated with.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RouteData
impl<'de> Deserialize<'de> for RouteData
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 RouteData
Auto Trait Implementations§
impl Freeze for RouteData
impl RefUnwindSafe for RouteData
impl Send for RouteData
impl Sync for RouteData
impl Unpin for RouteData
impl UnwindSafe for RouteData
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