Type Aliasswift-nio 2.81.0NIOHTTP1
HTTPClientRequestPart
The components of a HTTP request from the view of a HTTP client.
typealias HTTPClientRequestPart = HTTPPart<HTTPRequestHead, IOData>
The components of a HTTP request from the view of a HTTP client.
typealias HTTPClientRequestPart = HTTPPart<HTTPRequestHead, IOData>
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.
enum IOData
IOData
unifies standard SwiftNIO types that are raw bytes of data; currently ByteBuffer
and FileRegion
.