Expand description
Core primitives – requests, responses, filters & routing.
Everything that physically moves through the proxy pipeline is defined
in this module. No protocol-level logic lives here; that sits in
server.rs
(IO) and filters.rs
(behaviour).
Structs§
- Proxy
Core - Core proxy server implementation.
- Proxy
Request - Represents an HTTP request that can be processed by the proxy.
- Proxy
Response - Represents an HTTP response returned by the proxy.
- Request
Context - Context data that can be attached to a request and accessed by filters.
- Response
Context - Context data that can be attached to a response and accessed by filters.
- Route
- A route that the proxy can forward requests to.
Enums§
- Filter
Type - Describes when a filter should be applied.
- Http
Method - HTTP methods supported by the proxy.
- Proxy
Error - Errors that can occur during proxy operations.