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

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.

Implementations

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 from_bytes(txt_data: Vec<&[u8]>) -> TXT[src]

Creates a new TXT record data from bytes. Allows creating binary record data.

Arguments

  • txt_data - the set of bytes 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 Clone for TXT[src]

impl Debug for TXT[src]

impl Display for TXT[src]

impl Eq for TXT[src]

impl Hash for TXT[src]

impl PartialEq<TXT> for TXT[src]

impl StructuralEq for TXT[src]

impl StructuralPartialEq for TXT[src]

Auto Trait Implementations

impl RefUnwindSafe for TXT

impl Send for TXT

impl Sync for TXT

impl Unpin for TXT

impl UnwindSafe for TXT

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,