Struct aws_sdk_appmesh::types::GrpcGatewayRouteRewrite
source · #[non_exhaustive]pub struct GrpcGatewayRouteRewrite {
pub hostname: Option<GatewayRouteHostnameRewrite>,
}
Expand description
An object that represents the gateway route to rewrite.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.hostname: Option<GatewayRouteHostnameRewrite>
The host name of the gateway route to rewrite.
Implementations§
source§impl GrpcGatewayRouteRewrite
impl GrpcGatewayRouteRewrite
sourcepub fn hostname(&self) -> Option<&GatewayRouteHostnameRewrite>
pub fn hostname(&self) -> Option<&GatewayRouteHostnameRewrite>
The host name of the gateway route to rewrite.
source§impl GrpcGatewayRouteRewrite
impl GrpcGatewayRouteRewrite
sourcepub fn builder() -> GrpcGatewayRouteRewriteBuilder
pub fn builder() -> GrpcGatewayRouteRewriteBuilder
Creates a new builder-style object to manufacture GrpcGatewayRouteRewrite
.
Trait Implementations§
source§impl Clone for GrpcGatewayRouteRewrite
impl Clone for GrpcGatewayRouteRewrite
source§fn clone(&self) -> GrpcGatewayRouteRewrite
fn clone(&self) -> GrpcGatewayRouteRewrite
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 GrpcGatewayRouteRewrite
impl Debug for GrpcGatewayRouteRewrite
source§impl PartialEq<GrpcGatewayRouteRewrite> for GrpcGatewayRouteRewrite
impl PartialEq<GrpcGatewayRouteRewrite> for GrpcGatewayRouteRewrite
source§fn eq(&self, other: &GrpcGatewayRouteRewrite) -> bool
fn eq(&self, other: &GrpcGatewayRouteRewrite) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GrpcGatewayRouteRewrite
Auto Trait Implementations§
impl RefUnwindSafe for GrpcGatewayRouteRewrite
impl Send for GrpcGatewayRouteRewrite
impl Sync for GrpcGatewayRouteRewrite
impl Unpin for GrpcGatewayRouteRewrite
impl UnwindSafe for GrpcGatewayRouteRewrite
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