#[non_exhaustive]
pub enum ZoneRecordData<O, N> {
Show 27 variants A(A), Cname(Cname<N>), Hinfo(Hinfo<O>), Mb(Mb<N>), Md(Md<N>), Mf(Mf<N>), Mg(Mg<N>), Minfo(Minfo<N>), Mr(Mr<N>), Mx(Mx<N>), Ns(Ns<N>), Ptr(Ptr<N>), Soa(Soa<N>), Txt(Txt<O>), Aaaa(Aaaa), Cdnskey(Cdnskey<O>), Cds(Cds<O>), Dname(Dname<N>), Dnskey(Dnskey<O>), Rrsig(Rrsig<O, N>), Nsec(Nsec<O, N>), Ds(Ds<O>), Nsec3(Nsec3<O>), Nsec3param(Nsec3param<O>), Srv(Srv<N>), Zonemd(Zonemd<O>), Unknown(UnknownRecordData<O>),
}
Expand description

Record data for all record types allowed in zone files.

This enum collects the record data types for all currently implemented record types that are allowed to be included in zone files.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

A(A)

§

Cname(Cname<N>)

§

Hinfo(Hinfo<O>)

§

Mb(Mb<N>)

§

Md(Md<N>)

§

Mf(Mf<N>)

§

Mg(Mg<N>)

§

Minfo(Minfo<N>)

§

Mr(Mr<N>)

§

Mx(Mx<N>)

§

Ns(Ns<N>)

§

Ptr(Ptr<N>)

§

Soa(Soa<N>)

§

Txt(Txt<O>)

§

Aaaa(Aaaa)

§

Cdnskey(Cdnskey<O>)

§

Cds(Cds<O>)

§

Dname(Dname<N>)

§

Dnskey(Dnskey<O>)

§

Rrsig(Rrsig<O, N>)

§

Nsec(Nsec<O, N>)

§

Ds(Ds<O>)

§

Nsec3(Nsec3<O>)

§

Nsec3param(Nsec3param<O>)

§

Srv(Srv<N>)

§

Zonemd(Zonemd<O>)

§

Unknown(UnknownRecordData<O>)

Implementations§

source§

impl<Octets: AsRef<[u8]>, Name: ToDname> ZoneRecordData<Octets, Name>

source

pub fn scan<S>(rtype: Rtype, scanner: &mut S) -> Result<Self, S::Error>
where S: Scanner<Octets = Octets, Dname = Name>,

Scans a value of the given rtype.

If the record data is given via the notation for unknown record types, the returned value will be of the ZoneRecordData::Unknown(_) variant.

Trait Implementations§

source§

impl<O, OO, N, NN> CanonicalOrd<ZoneRecordData<OO, NN>> for ZoneRecordData<O, N>
where O: AsRef<[u8]>, OO: AsRef<[u8]>, N: CanonicalOrd<NN> + ToDname, NN: ToDname,

source§

fn canonical_cmp(&self, other: &ZoneRecordData<OO, NN>) -> Ordering

Returns the canonical ordering between self and other.
source§

fn canonical_lt(&self, other: &Rhs) -> bool

Returns whether self is canonically less than other.
source§

fn canonical_le(&self, other: &Rhs) -> bool

Returns whether self is canonically less than or equal to other.
source§

fn canonical_gt(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than other.
source§

fn canonical_ge(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than or equal to other.
source§

impl<O: Clone, N: Clone> Clone for ZoneRecordData<O, N>

source§

fn clone(&self) -> ZoneRecordData<O, N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Octs, Name> ComposeRecordData for ZoneRecordData<Octs, Name>
where Octs: AsRef<[u8]>, Name: ToDname,

source§

fn rdlen(&self, compress: bool) -> Option<u16>

Returns the length of the record data if available. Read more
source§

fn compose_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

Appends the wire format of the record data into target.
source§

fn compose_canonical_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

Appends the canonical wire format of the record data into target.
source§

fn compose_len_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

Appends the record data prefixed with its length.
source§

fn compose_canonical_len_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

Appends the record data prefixed with its length.
source§

impl<O, N> Debug for ZoneRecordData<O, N>
where O: AsRef<[u8]>, N: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, O, N> Deserialize<'de> for ZoneRecordData<O, N>

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<O, N> Display for ZoneRecordData<O, N>
where O: AsRef<[u8]>, N: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Octets, TargetOctets, Name, TargetName> FlattenInto<ZoneRecordData<TargetOctets, TargetName>> for ZoneRecordData<Octets, Name>
where TargetOctets: OctetsFrom<Octets>, Name: FlattenInto<TargetName, AppendError = TargetOctets::Error>,

§

type AppendError = <TargetOctets as OctetsFrom<Octets>>::Error

source§

fn try_flatten_into( self ) -> Result<ZoneRecordData<TargetOctets, TargetName>, Self::AppendError>

source§

impl<O, N> From<A> for ZoneRecordData<O, N>

source§

fn from(value: A) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Aaaa> for ZoneRecordData<O, N>

source§

fn from(value: Aaaa) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Cdnskey<O>> for ZoneRecordData<O, N>

source§

fn from(value: Cdnskey<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Cds<O>> for ZoneRecordData<O, N>

source§

fn from(value: Cds<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Cname<N>> for ZoneRecordData<O, N>

source§

fn from(value: Cname<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Dname<N>> for ZoneRecordData<O, N>

source§

fn from(value: Dname<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Dnskey<O>> for ZoneRecordData<O, N>

source§

fn from(value: Dnskey<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Ds<O>> for ZoneRecordData<O, N>

source§

fn from(value: Ds<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Hinfo<O>> for ZoneRecordData<O, N>

source§

fn from(value: Hinfo<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Mb<N>> for ZoneRecordData<O, N>

source§

fn from(value: Mb<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Md<N>> for ZoneRecordData<O, N>

source§

fn from(value: Md<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Mf<N>> for ZoneRecordData<O, N>

source§

fn from(value: Mf<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Mg<N>> for ZoneRecordData<O, N>

source§

fn from(value: Mg<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Minfo<N>> for ZoneRecordData<O, N>

source§

fn from(value: Minfo<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Mr<N>> for ZoneRecordData<O, N>

source§

fn from(value: Mr<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Mx<N>> for ZoneRecordData<O, N>

source§

fn from(value: Mx<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Ns<N>> for ZoneRecordData<O, N>

source§

fn from(value: Ns<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Nsec<O, N>> for ZoneRecordData<O, N>

source§

fn from(value: Nsec<O, N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Nsec3<O>> for ZoneRecordData<O, N>

source§

fn from(value: Nsec3<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Nsec3param<O>> for ZoneRecordData<O, N>

source§

fn from(value: Nsec3param<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Ptr<N>> for ZoneRecordData<O, N>

source§

fn from(value: Ptr<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Rrsig<O, N>> for ZoneRecordData<O, N>

source§

fn from(value: Rrsig<O, N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Soa<N>> for ZoneRecordData<O, N>

source§

fn from(value: Soa<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Srv<N>> for ZoneRecordData<O, N>

source§

fn from(value: Srv<N>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Txt<O>> for ZoneRecordData<O, N>

source§

fn from(value: Txt<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<UnknownRecordData<O>> for ZoneRecordData<O, N>

source§

fn from(value: UnknownRecordData<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<Zonemd<O>> for ZoneRecordData<O, N>

source§

fn from(value: Zonemd<O>) -> Self

Converts to this type from the input type.
source§

impl<O, N> Hash for ZoneRecordData<O, N>
where O: AsRef<[u8]>, N: Hash,

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<Octets, SrcOctets, Name, SrcName> OctetsFrom<ZoneRecordData<SrcOctets, SrcName>> for ZoneRecordData<Octets, Name>
where Octets: OctetsFrom<SrcOctets>, Name: OctetsFrom<SrcName, Error = Octets::Error>,

§

type Error = <Octets as OctetsFrom<SrcOctets>>::Error

source§

fn try_octets_from( source: ZoneRecordData<SrcOctets, SrcName> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'a, Octs: Octets + ?Sized> ParseRecordData<'a, Octs> for ZoneRecordData<Octs::Range<'a>, ParsedDname<Octs::Range<'a>>>

source§

fn parse_rdata( rtype: Rtype, parser: &mut Parser<'a, Octs> ) -> Result<Option<Self>, ParseError>

Parses the record data. Read more
source§

impl<O, OO, N, NN> PartialEq<ZoneRecordData<OO, NN>> for ZoneRecordData<O, N>
where O: AsRef<[u8]>, OO: AsRef<[u8]>, N: ToDname, NN: ToDname,

source§

fn eq(&self, other: &ZoneRecordData<OO, NN>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O, OO, N, NN> PartialOrd<ZoneRecordData<OO, NN>> for ZoneRecordData<O, N>
where O: AsRef<[u8]>, OO: AsRef<[u8]>, N: ToDname, NN: ToDname,

source§

fn partial_cmp(&self, other: &ZoneRecordData<OO, NN>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<O, N> RecordData for ZoneRecordData<O, N>

source§

fn rtype(&self) -> Rtype

Returns the record type associated with this record data instance. Read more
source§

impl<O, N> Serialize for ZoneRecordData<O, N>
where O: AsRef<[u8]> + SerializeOctets, N: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<O, N> Eq for ZoneRecordData<O, N>
where O: AsRef<[u8]>, N: ToDname,

Auto Trait Implementations§

§

impl<O, N> RefUnwindSafe for ZoneRecordData<O, N>

§

impl<O, N> Send for ZoneRecordData<O, N>
where N: Send, O: Send,

§

impl<O, N> Sync for ZoneRecordData<O, N>
where N: Sync, O: Sync,

§

impl<O, N> Unpin for ZoneRecordData<O, N>
where N: Unpin, O: Unpin,

§

impl<O, N> UnwindSafe for ZoneRecordData<O, N>
where N: UnwindSafe, O: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Source, Target> OctetsInto<Target> for Source
where Target: OctetsFrom<Source>,

§

type Error = <Target as OctetsFrom<Source>>::Error

source§

fn try_octets_into( self ) -> Result<Target, <Source as OctetsInto<Target>>::Error>

Performs the conversion.
source§

fn octets_into(self) -> Target
where Self::Error: Into<Infallible>,

Performs an infallible conversion.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,