pub struct HttpRoute {
pub action: HttpRouteAction,
pub route_match: Option<HttpRouteMatch>,
pub retry_policy: Option<HttpRetryPolicy>,
pub timeout: Option<HttpTimeout>,
}
Expand description
An object that represents an HTTP or HTTP/2 route type.
Fields§
§action: HttpRouteAction
An object that represents the action to take if a match is determined.
route_match: Option<HttpRouteMatch>
An object that represents the criteria for determining a request match.
retry_policy: Option<HttpRetryPolicy>
An object that represents a retry policy.
timeout: Option<HttpTimeout>
An object that represents types of timeouts.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HttpRoute
impl<'de> Deserialize<'de> for HttpRoute
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 HttpRoute
Auto Trait Implementations§
impl Freeze for HttpRoute
impl RefUnwindSafe for HttpRoute
impl Send for HttpRoute
impl Sync for HttpRoute
impl Unpin for HttpRoute
impl UnwindSafe for HttpRoute
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