pub struct GrpcGatewayRouteMatch {
pub service_name: Option<String>,
}
Expand description
An object that represents the criteria for determining a request match.
Fields§
§service_name: Option<String>
The fully qualified domain name for the service to match from the request.
Trait Implementations§
Source§impl Clone for GrpcGatewayRouteMatch
impl Clone for GrpcGatewayRouteMatch
Source§fn clone(&self) -> GrpcGatewayRouteMatch
fn clone(&self) -> GrpcGatewayRouteMatch
Returns a duplicate 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 Default for GrpcGatewayRouteMatch
impl Default for GrpcGatewayRouteMatch
Source§fn default() -> GrpcGatewayRouteMatch
fn default() -> GrpcGatewayRouteMatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GrpcGatewayRouteMatch
impl<'de> Deserialize<'de> for GrpcGatewayRouteMatch
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 GrpcGatewayRouteMatch
impl PartialEq for GrpcGatewayRouteMatch
Source§impl Serialize for GrpcGatewayRouteMatch
impl Serialize for GrpcGatewayRouteMatch
impl StructuralPartialEq for GrpcGatewayRouteMatch
Auto Trait Implementations§
impl Freeze for GrpcGatewayRouteMatch
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