rocket_http/uri/mod.rs
1//! Types for URIs and traits for rendering URI components.
2
3#[macro_use]
4mod uri;
5mod origin;
6mod reference;
7mod authority;
8mod absolute;
9mod segments;
10mod path_query;
11mod asterisk;
12mod host;
13
14pub mod error;
15pub mod fmt;
16
17#[doc(inline)]
18pub use self::error::Error;
19
20pub use self::uri::*;
21pub use self::authority::*;
22pub use self::origin::*;
23pub use self::absolute::*;
24pub use self::segments::*;
25pub use self::reference::*;
26pub use self::path_query::*;
27pub use self::asterisk::*;
28pub use self::host::*;