Build Status

uri-rs

uri is a library to help in parsing and creating an uri.

Examples

use uri::Uri;

fn main() { match Uri::new("https://github.com/jeandudey/uri-rs/") { Some(uri) => { println!("-- URI INFO --"); println!("Scheme: {}", uri.scheme); println!("Host: {}", uri.host.unwrap()); println!("Path: {}", uri.path.unwrap()); }, None => panic!("Oh no!") } } ```