domain/rdata/rfc1035/
mod.rs

1//! Record data from [RFC 1035]: initial record types.
2//!
3//! This RFC defines the initial set of record types.
4//!
5//! [RFC 1035]: https://tools.ietf.org/html/rfc1035
6
7pub use self::a::A;
8pub use self::name::{Cname, Mb, Md, Mf, Mg, Mr, Ns, Ptr};
9pub use self::hinfo::Hinfo;
10pub use self::minfo::Minfo;
11pub use self::mx::Mx;
12pub use self::null::Null;
13pub use self::soa::Soa;
14pub use self::txt::{
15    Txt, TxtAppendError, TxtBuilder, TxtCharStrIter, TxtError, TxtIter
16};
17
18mod a;
19mod name;
20mod hinfo;
21mod minfo;
22mod mx;
23mod null;
24mod soa;
25mod txt;
26