rust-dnsbox/lib/dnsbox-base/src/ser/rrdata.rs

9 lines
155 B
Rust
Raw Normal View History

2017-12-16 20:58:18 +00:00
use std::borrow::Cow;
use common_types::Type;
pub trait RRData: super::DnsPacketData {
fn rr_type() -> Type;
fn rr_type_name() -> Cow<'static, str>;
}