NIOHTTPServerRequestFull
public struct NIOHTTPServerRequestFull
extension NIOHTTPServerRequestFull: Equatable
The parts of a complete HTTP response from the view of the client.
A full HTTP request is made up of a response header encoded by .head
and an optional .body
.
-
Undocumented
Declaration
Swift
public var head: HTTPRequestHead
-
Undocumented
Declaration
Swift
public var body: ByteBuffer?
-
Undocumented
Declaration
Swift
public init(head: HTTPRequestHead, body: ByteBuffer?)