pub struct HttpProxyRequest {
pub kind: HttpProxyRequestKind,
pub headers: HeaderMap<HeaderValue>,
}Expand description
HTTP request suitable for proxy routing decisions.
Contains the classified request target and headers. The body is handled separately via streaming.
Fields§
§kind: HttpProxyRequestKindClassified request target.
headers: HeaderMap<HeaderValue>Header fields from the request.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for HttpProxyRequest
impl RefUnwindSafe for HttpProxyRequest
impl Send for HttpProxyRequest
impl Sync for HttpProxyRequest
impl Unpin for HttpProxyRequest
impl UnsafeUnpin for HttpProxyRequest
impl UnwindSafe for HttpProxyRequest
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