How to upload file using multipart now? As reqwest::multipart::Form::stream is private and reqwest::multipart::Form does not implement Stream, AsyncRead or Into<Body>.
You can create a Part from a stream: https://docs.rs/reqwest/0.10.*/reqwest/multipart/struct.Part.html#method.stream
I know how to create a form from a stream but... How can I create a body from a form?
Most helpful comment
I know how to create a form from a stream but... How can I create a body from a form?