Type Aliasswift-nio 2.81.0NIOHTTP1
HTTPClientResponsePart
The components of a HTTP response from the view of a HTTP client.
typealias HTTPClientResponsePart = HTTPPart<HTTPResponseHead, ByteBuffer>
The components of a HTTP response from the view of a HTTP client.
typealias HTTPClientResponsePart = HTTPPart<HTTPResponseHead, 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 HTTPResponseHead
A representation of the status line and header fields of a HTTP response.
struct ByteBuffer
ByteBuffer
stores contiguously allocated raw bytes. It is a random and sequential accessible sequence of zero or more bytes (octets).