hickory_proto/rr/domain/
mod.rs

1// Copyright 2015-2017 Benjamin Fry <benjaminfry@me.com>
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// https://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8//! Domain name associated types, such as Name and Label.
9
10mod label;
11mod name;
12mod try_parse_ip;
13pub mod usage;
14
15pub use self::label::{IntoLabel, Label};
16pub use self::name::{IntoName, LabelIter, Name};
17pub use self::try_parse_ip::TryParseIp;