query-params-derive-0.1.1 doesn't have any documentation.
Transform an arbitrary structs to a http query params
This crate generate a function for serialize the fields of an arbitrary structs
into a http query params `String` by the usage of a procedural macro with custom derive.
The query params `String` return has for purpose to be use with any rust client http lib.
# Getting Start
Add `query_params` as a dependency to you `Cargo.toml`.
## Overview
```ignore,
#[macro_use]
extern crate query_params;
extern crate query_params_trait;
use query_params_trait::QueryParams;
#[derive(QueryParams)]
struct PullRequestsParametersApi {
page: i32,
sort: bool,
direction: String,
state: Vec