Skip to main content

address/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![cfg_attr(docsrs, doc(auto_cfg))]
4
5pub use authority::*;
6pub use domain::*;
7pub use endpoint::*;
8pub use host::*;
9pub use ip::*;
10pub use parse::*;
11pub use socket::*;
12
13mod authority;
14mod domain;
15mod endpoint;
16mod host;
17mod ip;
18mod parse;
19mod socket;
20
21mod display;
22
23#[cfg(feature = "serde")]
24mod serde;