#[non_exhaustive]
pub enum AllRecordData<O, N> {
Show 32 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>), Null(Null<O>), Svcb(Svcb<O, N>), Https(Https<O, N>), Tsig(Tsig<O, N>), Opt(Opt<O>), Unknown(UnknownRecordData<O>),
}
Expand description

Record data for all record types.

This enum collects the record data types for all currently implemented record types.

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>)

§

Null(Null<O>)

§

Svcb(Svcb<O, N>)

§

Https(Https<O, N>)

§

Tsig(Tsig<O, N>)

§

Opt(Opt<O>)

§

Unknown(UnknownRecordData<O>)

Trait Implementations§

source§

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

source§

fn clone(&self) -> AllRecordData<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 AllRecordData<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 AllRecordData<O, N>
where O: Octets, N: Debug,

source§

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

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

impl<O, N> Display for AllRecordData<O, N>
where O: Octets, 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<AllRecordData<TargetOctets, TargetName>> for AllRecordData<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<AllRecordData<TargetOctets, TargetName>, Self::AppendError>

source§

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

source§

fn from(value: A) -> Self

Converts to this type from the input type.
source§

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

source§

fn from(value: Aaaa) -> Self

Converts to this type from the input type.
source§

impl<O, N> From<AllRecordData<O, N>> for Result<ZoneRecordData<O, N>, AllRecordData<O, N>>

source§

fn from( value: AllRecordData<O, N> ) -> Result<ZoneRecordData<O, N>, AllRecordData<O, N>>

Converts to this type from the input type.
source§

impl<O, N> From<Cdnskey<O>> for AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<Null<O>> for AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<Opt<O>> for AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<Ptr<N>> for AllRecordData<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 AllRecordData<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 AllRecordData<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 AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<SvcbRdata<HttpsVariant, O, N>> for AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<SvcbRdata<SvcbVariant, O, N>> for AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<Tsig<O, N>> for AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> From<Txt<O>> for AllRecordData<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 AllRecordData<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 AllRecordData<O, N>

source§

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

Converts to this type from the input type.
source§

impl<O, N> Hash for AllRecordData<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<AllRecordData<SrcOctets, SrcName>> for AllRecordData<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: AllRecordData<SrcOctets, SrcName> ) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'a, Octs: Octets> ParseRecordData<'a, Octs> for AllRecordData<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<AllRecordData<OO, NN>> for AllRecordData<O, N>
where O: AsRef<[u8]>, OO: AsRef<[u8]>, N: ToDname, NN: ToDname,

source§

fn eq(&self, other: &AllRecordData<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, N> RecordData for AllRecordData<O, N>

source§

fn rtype(&self) -> Rtype

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

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

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<O, N> UnwindSafe for AllRecordData<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