uri-builder 0.1.0

Simple URI builder library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# URI Builder

Simple URI builder library. Provides setter fields according to the URI specification.

## Example

```rust
use uri_builder::URI;

let uri: String = URI::new("http")
    .host("github")
    .path_vec(vec!["dikuchan", "repos"].as_ref())
    .query("page", 1)
    .build();
```

The above example results in `https://github.com/dikuchan/repos?page=1`.