Hi all,
I was wondering why the http
crate doesn't implement From<T>
crate, specially for String
or [u8]
?
Am I missing something here?
I'd like to convert a http request to a Request
structure. Like GET http://www.w3.org/pub/WWW/TheProject.html HTTP/1.1
to a Request
with method, headers,...
Any idea?