Part of #114, we can use the << operator for served::response to stream the file back to the user in chunks. I'm not sure if we can manually set the response type back to the user with it but it's worth a shot. What I mean is having this as the first response (as specified by mozilla's chunked transfer encoding docs)
HTTP/1.1 200 OK
Content-Type: text/plain
Transfer-Encoding: chunked
Part of #114, we can use the
<<operator forserved::responseto stream the file back to the user in chunks. I'm not sure if we can manually set the response type back to the user with it but it's worth a shot. What I mean is having this as the first response (as specified by mozilla's chunked transfer encoding docs)