pub struct GatewayRouteData {
pub gateway_route_name: String,
pub mesh_name: String,
pub metadata: ResourceMetadata,
pub spec: GatewayRouteSpec,
pub status: GatewayRouteStatus,
pub virtual_gateway_name: String,
}
Expand description
An object that represents a gateway route returned by a describe operation.
Fields§
§gateway_route_name: String
The name of the gateway route.
mesh_name: String
The name of the service mesh that the resource resides in.
metadata: ResourceMetadata
§spec: GatewayRouteSpec
The specifications of the gateway route.
status: GatewayRouteStatus
The status of the gateway route.
virtual_gateway_name: String
The virtual gateway that the gateway route is associated with.
Trait Implementations§
Source§impl Clone for GatewayRouteData
impl Clone for GatewayRouteData
Source§fn clone(&self) -> GatewayRouteData
fn clone(&self) -> GatewayRouteData
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 GatewayRouteData
impl Debug for GatewayRouteData
Source§impl Default for GatewayRouteData
impl Default for GatewayRouteData
Source§fn default() -> GatewayRouteData
fn default() -> GatewayRouteData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayRouteData
impl<'de> Deserialize<'de> for GatewayRouteData
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
Source§impl PartialEq for GatewayRouteData
impl PartialEq for GatewayRouteData
impl StructuralPartialEq for GatewayRouteData
Auto Trait Implementations§
impl Freeze for GatewayRouteData
impl RefUnwindSafe for GatewayRouteData
impl Send for GatewayRouteData
impl Sync for GatewayRouteData
impl Unpin for GatewayRouteData
impl UnwindSafe for GatewayRouteData
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