[][src]Struct trust_dns_proto::rr::rdata::txt::TXT

pub struct TXT { /* fields omitted */ }

RFC 1035, DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION, November 1987

3.3.14. TXT RDATA format

    +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
    /                   TXT-DATA                    /
    +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+


TXT RRs are used to hold descriptive text.  The semantics of the text
depends on the domain where it is found.

Methods

impl TXT
[src]

pub fn new(txt_data: Vec<String>) -> TXT
[src]

Creates a new TXT record data.

Arguments

  • txt_data - the set of strings which make up the txt_data.

Return value

The new TXT record data.

pub fn txt_data(&self) -> &[Box<[u8]>]
[src]

TXT-DATA        One or more <character-string>s.

pub fn iter(&self) -> Iter<Box<[u8]>>
[src]

Returns an iterator over the arrays in the txt data

Trait Implementations

impl Eq for TXT
[src]

impl PartialEq<TXT> for TXT
[src]

impl Clone for TXT
[src]

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

Performs copy-assignment from source. Read more

impl Debug for TXT
[src]

impl Hash for TXT
[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

impl Send for TXT

impl Sync for TXT

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T