rust-dnsbox/lib/dnsbox-base/src/ser/text/mod.rs

5 lines
137 B
Rust
Raw Normal View History

2017-12-16 20:58:18 +00:00
pub trait DnsTextData: Sized {
fn dns_parse(data: &str) -> ::errors::Result<Self>;
fn dns_format(&self) -> ::errors::Result<String>;
}