URL parser for HTTP/HTTPS URLs.
Parses URLs in the format: scheme://host[:port][/path][?query]
§Examples
ⓘuse morpheus_network::url::Url;
let url = Url::parse("http://example.com/path?query=value").unwrap();
assert_eq!(url.host, "example.com");
assert_eq!(url.path, "/path");