requests-rs icon indicating copy to clipboard operation
requests-rs copied to clipboard

Rust HTTP client library styled after awesome Python requests

Results 1 requests-rs issues
Sort by recently updated
recently updated
newest added

If I know what the response body looks like, I want to be able to do something like: ``` rust #[derive(Deserialize)] struct MyResponse { user: String, commits: Vec, } fn...