Struct c_ares::CNameResults[][src]

pub struct CNameResults { /* fields omitted */ }

The result of a successful CNAME lookup.

Methods

impl CNameResults
[src]

Obtain a CNameResults from the response to a CNAME lookup.

Returns the hostname from this CNameResults.

In practice this is very likely to be a valid UTF-8 string, but the underlying c-ares library does not guarantee this - so we leave it to users to decide whether they prefer a fallible conversion, a lossy conversion, or something else altogether.

Important traits for HostAliasResultsIter<'a>

Returns an iterator over the host aliases in this CNameResults.

Trait Implementations

impl Debug for CNameResults
[src]

Formats the value using the given formatter. Read more

impl Display for CNameResults
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations