[][src]Enum trust_dns::rr::rdata::DNSSECRecordType

pub enum DNSSECRecordType {
    DNSKEY,
    DS,
    KEY,
    NSEC,
    NSEC3,
    NSEC3PARAM,
    RRSIG,
    SIG,
    Unknown(u16),
}

The type of the resource record, for DNSSEC-specific records.

Variants

DNSKEY

RFC 4034 DNS Key record: RSASHA256 and RSASHA512, RFC5702

DS

RFC 4034 Delegation signer: RSASHA256 and RSASHA512, RFC5702

KEY

RFC 2535[3] and RFC 2930[4] Key record

NSEC

RFC 4034 Next-Secure record

NSEC3

RFC 5155 NSEC record version 3

NSEC3PARAM

RFC 5155 NSEC3 parameters

RRSIG

RFC 4034 DNSSEC signature: RSASHA256 and RSASHA512, RFC5702

SIG

RFC 2535 (2931) Signature, to support 2137 Update.

This isn't really a DNSSEC record type, but it is here because, at least for now, we enable/disable SIG(0) in exactly the same circumstances that we enable/disable DNSSEC. This may change in the future.

Unknown(u16)

Unknown or not yet supported DNSSec record type

Trait Implementations

impl From<u16> for DNSSECRecordType[src]

impl Copy for DNSSECRecordType[src]

impl Clone for DNSSECRecordType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for DNSSECRecordType[src]

impl PartialEq<DNSSECRecordType> for DNSSECRecordType[src]

impl Debug for DNSSECRecordType[src]

impl Hash for DNSSECRecordType[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T