Struct aws_sdk_appmesh::types::GrpcGatewayRouteMatch
source · #[non_exhaustive]pub struct GrpcGatewayRouteMatch { /* private fields */ }
Expand description
An object that represents the criteria for determining a request match.
Implementations§
source§impl GrpcGatewayRouteMatch
impl GrpcGatewayRouteMatch
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The fully qualified domain name for the service to match from the request.
sourcepub fn hostname(&self) -> Option<&GatewayRouteHostnameMatch>
pub fn hostname(&self) -> Option<&GatewayRouteHostnameMatch>
The gateway route host name to be matched on.
sourcepub fn metadata(&self) -> Option<&[GrpcGatewayRouteMetadata]>
pub fn metadata(&self) -> Option<&[GrpcGatewayRouteMetadata]>
The gateway route metadata to be matched on.
source§impl GrpcGatewayRouteMatch
impl GrpcGatewayRouteMatch
sourcepub fn builder() -> GrpcGatewayRouteMatchBuilder
pub fn builder() -> GrpcGatewayRouteMatchBuilder
Creates a new builder-style object to manufacture GrpcGatewayRouteMatch
.
Trait Implementations§
source§impl Clone for GrpcGatewayRouteMatch
impl Clone for GrpcGatewayRouteMatch
source§fn clone(&self) -> GrpcGatewayRouteMatch
fn clone(&self) -> GrpcGatewayRouteMatch
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 GrpcGatewayRouteMatch
impl Debug for GrpcGatewayRouteMatch
source§impl PartialEq<GrpcGatewayRouteMatch> for GrpcGatewayRouteMatch
impl PartialEq<GrpcGatewayRouteMatch> for GrpcGatewayRouteMatch
source§fn eq(&self, other: &GrpcGatewayRouteMatch) -> bool
fn eq(&self, other: &GrpcGatewayRouteMatch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GrpcGatewayRouteMatch
Auto Trait Implementations§
impl RefUnwindSafe for GrpcGatewayRouteMatch
impl Send for GrpcGatewayRouteMatch
impl Sync for GrpcGatewayRouteMatch
impl Unpin for GrpcGatewayRouteMatch
impl UnwindSafe for GrpcGatewayRouteMatch
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