Struct domain::base::question::Question

source ·
pub struct Question<N> { /* private fields */ }
Expand description

A question in a DNS message.

In DNS, a question describes what is requested in a query. It consists of three elements: a domain name, a record type, and a class. This type represents such a question.

Questions are generic over the domain name type. When read from an actual message, a ParsedDname has to be used because the name part may be compressed.

Implementations§

source§

impl<N> Question<N>

source

pub fn new(qname: N, qtype: Rtype, qclass: Class) -> Self

Creates a new question from its three componets.

source

pub fn new_in(qname: N, qtype: Rtype) -> Self

Creates a new question from a name and record type, assuming class IN.

source

pub fn into_qname(self) -> N

Converts the question into the qname.

source§

impl<N: ToDname> Question<N>

source

pub fn qname(&self) -> &N

Returns a reference to the domain nmae in the question,

source

pub fn qtype(&self) -> Rtype

Returns the record type of the question.

source

pub fn qclass(&self) -> Class

Returns the class of the question.

source§

impl<Octs> Question<ParsedDname<Octs>>

source

pub fn parse<'a, Src: Octets<Range<'a> = Octs> + ?Sized + 'a>( parser: &mut Parser<'a, Src> ) -> Result<Self, ParseError>

source§

impl<N: ToDname> Question<N>

source

pub fn compose<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

Trait Implementations§

source§

impl<N, NN> CanonicalOrd<Question<NN>> for Question<N>where N: ToDname, NN: ToDname,

source§

fn canonical_cmp(&self, other: &Question<NN>) -> Ordering

Returns the canonical ordering between self and other.
source§

fn canonical_lt(&self, other: &Rhs) -> bool

Returns whether self is canonically less than other.
source§

fn canonical_le(&self, other: &Rhs) -> bool

Returns whether self is canonically less than or equal to other.
source§

fn canonical_gt(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than other.
source§

fn canonical_ge(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than or equal to other.
source§

impl<N: Clone> Clone for Question<N>

source§

fn clone(&self) -> Question<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Name: ToDname> ComposeQuestion for Question<Name>

source§

fn compose_question<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>

source§

impl<N: Debug> Debug for Question<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<N: Display> Display for Question<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<N: ToDname> From<(N, Rtype)> for Question<N>

source§

fn from((name, rtype): (N, Rtype)) -> Self

Converts to this type from the input type.
source§

impl<N: ToDname> From<(N, Rtype, Class)> for Question<N>

source§

fn from((name, rtype, class): (N, Rtype, Class)) -> Self

Converts to this type from the input type.
source§

impl<N: Hash> Hash for Question<N>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<Name, SrcName> OctetsFrom<Question<SrcName>> for Question<Name>where Name: OctetsFrom<SrcName>,

§

type Error = <Name as OctetsFrom<SrcName>>::Error

source§

fn try_octets_from(source: Question<SrcName>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<N: ToDname> Ord for Question<N>

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<N, NN> PartialEq<Question<NN>> for Question<N>where N: ToDname, NN: ToDname,

source§

fn eq(&self, other: &Question<NN>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<N, NN> PartialOrd<Question<NN>> for Question<N>where N: ToDname, NN: ToDname,

source§

fn partial_cmp(&self, other: &Question<NN>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<N: Copy> Copy for Question<N>

source§

impl<N: ToDname> Eq for Question<N>

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Question<N>where N: RefUnwindSafe,

§

impl<N> Send for Question<N>where N: Send,

§

impl<N> Sync for Question<N>where N: Sync,

§

impl<N> Unpin for Question<N>where N: Unpin,

§

impl<N> UnwindSafe for Question<N>where N: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Source, Target> OctetsInto<Target> for Sourcewhere Target: OctetsFrom<Source>,

§

type Error = <Target as OctetsFrom<Source>>::Error

source§

fn try_octets_into( self ) -> Result<Target, <Source as OctetsInto<Target>>::Error>

Performs the conversion.
source§

fn octets_into(self) -> Targetwhere Self::Error: Into<Infallible>,

Performs an infallible conversion.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V