Enum trust_dns::rr::record_type::RecordType [] [src]

pub enum RecordType {
    A,
    AAAA,
    ANY,
    AXFR,
    CAA,
    CNAME,
    IXFR,
    MX,
    NS,
    NULL,
    OPT,
    PTR,
    SOA,
    SRV,
    TLSA,
    TXT,
    DNSSEC(DNSSECRecordType),
    Unknown(u16),
}

The type of the resource record.

This specifies the type of data in the RData field of the Resource Record

Variants

RFC 1035[1] IPv4 Address record

RFC 3596[2] IPv6 address record

RFC 1035[1] All cached records, aka ANY

RFC 1035[1] Authoritative Zone Transfer

RFC 6844 Certification Authority Authorization

RFC 1035[1] Canonical name record

RFC 1996 Incremental Zone Transfer

RFC 1035[1] Mail exchange record

RFC 1035[1] Name server record

RFC 1035[1] Null server record, for testing

RFC 6891 Option

RFC 1035[1] Pointer record

RFC 1035[1] and RFC 2308[9] Start of [a zone of] authority record

RFC 2782 Service locator

RFC 6698 TLSA certificate association

RFC 1035[1] Text record

A DNSSEC- or SIG(0)- specific record type.

These types are in DNSSECRecordType to make them easy to disable when crypto functionality isn't needed.

Unknown Record type, or unsupported

Methods

impl RecordType
[src]

[src]

Returns true if this is an ANY

[src]

Returns true if this is a CNAME

[src]

Returns true if this is an SRV

Trait Implementations

impl Ord for RecordType
[src]

[src]

impl Hash for RecordType
[src]

[src]

impl Copy for RecordType
[src]

impl Clone for RecordType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for RecordType
[src]

impl From<u16> for RecordType
[src]

[src]

Convert from u16 to RecordType

use trust_dns_proto::rr::record_type::RecordType;

let var = RecordType::from(1);
assert_eq!(RecordType::A, var);

impl PartialEq<RecordType> for RecordType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl FromStr for RecordType
[src]

The associated error which can be returned from parsing.

[src]

Convert &str to RecordType

use std::str::FromStr;
use trust_dns_proto::rr::record_type::RecordType;

let var: RecordType = RecordType::from_str("A").unwrap();
assert_eq!(RecordType::A, var);

impl Debug for RecordType
[src]

[src]

Formats the value using the given formatter.

impl BinSerializable<RecordType> for RecordType
[src]

[src]

Read the type from the stream

[src]

Write the type to the stream

impl Display for RecordType
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialOrd<RecordType> for RecordType
[src]

[src]