[][src]Struct toluol::DnsQuestion

pub struct DnsQuestion { /* fields omitted */ }

Represents a DNS question, i.e. an entry in the question section of a DNS message. See RFC 1035 for further information.

Implementations

impl DnsQuestion[src]

pub fn new(domain: &str, qtype: DnsType, qclass: DnsClass) -> DnsQuestion[src]

Creates a DNS question.

pub fn encode(&self) -> Result<Vec<u8>>[src]

Encodes a DnsQuestion as a series of bytes. Returns an error if a method defined in byteorder::WriteBytesExt returns an error.

pub fn parse(msg: &mut Cursor<&[u8]>) -> Result<DnsQuestion>[src]

Parses an encoded DnsQuestion from a series of bytes. Returns an error if DnsMessage::parse_qname(), DnsType::parse(), DnsClass::parse() or a method defined in byteorder::ReadBytesExt return an error.

pub fn as_padded_string(&self, owner_len: usize) -> String[src]

Returns a string representing the record in the canonical format, with the owner padded to the given length.

Trait Implementations

impl Display for DnsQuestion[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> 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>,