summaryrefslogtreecommitdiffstats
path: root/third_party/rust/dns-parser/src/rdata/mg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/dns-parser/src/rdata/mg.rs')
-rw-r--r--third_party/rust/dns-parser/src/rdata/mg.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/rust/dns-parser/src/rdata/mg.rs b/third_party/rust/dns-parser/src/rdata/mg.rs
new file mode 100644
index 0000000000..4fce456b7d
--- /dev/null
+++ b/third_party/rust/dns-parser/src/rdata/mg.rs
@@ -0,0 +1,11 @@
+#[derive(Debug, PartialEq, Eq, Clone, Copy)]
+pub struct Record;
+
+impl<'a> super::Record<'a> for Record {
+
+ const TYPE: isize = 8;
+
+ fn parse(_rdata: &'a [u8], _original: &'a [u8]) -> super::RDataResult<'a> {
+ unimplemented!();
+ }
+}