Type Aliasswift-nio 2.72.0NIOHTTP1
HTTPServerResponsePart
The components of a HTTP response from the view of a HTTP server.
HTTPTypes.swift:169typealias HTTPServerResponsePart = HTTPPart<HTTPResponseHead, IOData>
The components of a HTTP response from the view of a HTTP server.
HTTPTypes.swift:169typealias HTTPServerResponsePart = HTTPPart<HTTPResponseHead, 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 HTTPResponseHead
A representation of the status line and header fields of a HTTP response.
enum IOData
IOData
unifies standard SwiftNIO types that are raw bytes of data; currently ByteBuffer
and FileRegion
.