[][src]Enum trust_dns_client::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 Clone for DNSSECRecordType[src]

impl Copy for DNSSECRecordType[src]

impl Debug for DNSSECRecordType[src]

impl Eq for DNSSECRecordType[src]

impl From<u16> for DNSSECRecordType[src]

impl FromStr for DNSSECRecordType[src]

type Err = ProtoError

The associated error which can be returned from parsing.

impl Hash for DNSSECRecordType[src]

impl PartialEq<DNSSECRecordType> for DNSSECRecordType[src]

impl StructuralEq for DNSSECRecordType[src]

impl StructuralPartialEq for DNSSECRecordType[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,