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

9 lines
155 B
Rust

use std::borrow::Cow;
use common_types::Type;
pub trait RRData: super::DnsPacketData {
fn rr_type() -> Type;
fn rr_type_name() -> Cow<'static, str>;
}