Ravi Shankar

Results 84 comments of Ravi Shankar

So, this is basically what I had in mind. The two traits of interest are `ApiClient` and `Sendable`. ```rust trait ApiClient { // } ``` ```rust trait Sendable { type...

> ... `reqwest` doesn't have a competition. I was wrong. [Surf](https://github.com/rustasync/surf) is here and it looks really promising with async/await. I guess it's time to rethink `ApiClient` and `Sendable`.

This only works when non-implementors are passed to something else that requires some trait implementation. In paperclip client, we call `.send()` method on the implementor directly, so this doesn't work...