Type Aliasswift-nio 2.81.0NIOHTTP1
HTTPServerRequestPart
The components of a HTTP request from the view of a HTTP server.
typealias HTTPServerRequestPart = HTTPPart<HTTPRequestHead, ByteBuffer>
The components of a HTTP request from the view of a HTTP server.
typealias HTTPServerRequestPart = HTTPPart<HTTPRequestHead, ByteBuffer>
import NIOHTTP1
enum HTTPPart<HeadT, BodyT> where HeadT : Equatable, BodyT : Equatable
The parts of a complete HTTP message, representing either a request or a response.
struct HTTPRequestHead
A representation of the request line and header fields of a HTTP request.
struct ByteBuffer
ByteBuffer
stores contiguously allocated raw bytes. It is a random and sequential accessible sequence of zero or more bytes (octets).