pub struct RecordHeader<Name> { /* private fields */ }
Expand description

The header of a resource record.

This type encapsulates the common header of a resource record. It consists of the owner, record type, class, TTL, and the length of the record data. It is effectively a helper type for dealing with resource records encoded in a DNS message.

See Record for more details about resource records.

Implementations§

source§

impl<Name> RecordHeader<Name>

source

pub fn new( owner: Name, rtype: Rtype, class: Class, ttl: Ttl, rdlen: u16 ) -> Self

Creates a new record header from its components.

source§

impl<Name> RecordHeader<Name>

source

pub fn owner(&self) -> &Name

Returns a reference to the owner of the record.

source

pub fn rtype(&self) -> Rtype

Returns the record type of the record.

source

pub fn class(&self) -> Class

Returns the class of the record.

source

pub fn ttl(&self) -> Ttl

Returns the TTL of the record.

source

pub fn rdlen(&self) -> u16

Returns the data length of the record.

source

pub fn into_record<Data>(self, data: Data) -> Record<Name, Data>

Converts the header into an actual record.

source§

impl<Octs> RecordHeader<ParsedDname<Octs>>

source

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

source§

impl<'a, Octs: AsRef<[u8]> + ?Sized> RecordHeader<ParsedDname<&'a Octs>>

source

pub fn parse_ref(parser: &mut Parser<'a, Octs>) -> Result<Self, ParseError>

source§

impl<Name> RecordHeader<Name>

source

pub fn parse_and_skip<'a, Octs>( parser: &mut Parser<'a, Octs> ) -> Result<Self, ParseError>where Self: Parse<'a, Octs>, Octs: Octets,

Parses a record header and then skips over the data.

If the function succeeds, the parser will be positioned right behind the end of the record.

source§

impl<Octs> RecordHeader<ParsedDname<Octs>>

source

pub fn parse_into_record<'a, Src, Data>( self, parser: &mut Parser<'a, Src> ) -> Result<Option<Record<ParsedDname<Octs>, Data>>, ParseError>where Src: AsRef<[u8]> + ?Sized, Data: ParseRecordData<'a, Src>,

Parses the remainder of the record and returns it.

The method assumes that the parsers is currently positioned right after the end of the record header. If the record data type D feels capable of parsing a record with a header of self, the method will parse the data and return a full Record<D>. Otherwise, it skips over the record data.

source§

impl<Name: ToDname> RecordHeader<Name>

source

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

source

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

Trait Implementations§

source§

impl<Name: Clone> Clone for RecordHeader<Name>

source§

fn clone(&self) -> RecordHeader<Name>

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: Debug> Debug for RecordHeader<Name>

source§

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

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

impl<Name: Hash> Hash for RecordHeader<Name>

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: ToDname> Ord for RecordHeader<Name>

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<Name, NName> PartialEq<RecordHeader<NName>> for RecordHeader<Name>where Name: ToDname, NName: ToDname,

source§

fn eq(&self, other: &RecordHeader<NName>) -> 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<Name, NName> PartialOrd<RecordHeader<NName>> for RecordHeader<Name>where Name: ToDname, NName: ToDname,

source§

fn partial_cmp(&self, other: &RecordHeader<NName>) -> 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<Name: ToDname> Eq for RecordHeader<Name>

Auto Trait Implementations§

§

impl<Name> RefUnwindSafe for RecordHeader<Name>where Name: RefUnwindSafe,

§

impl<Name> Send for RecordHeader<Name>where Name: Send,

§

impl<Name> Sync for RecordHeader<Name>where Name: Sync,

§

impl<Name> Unpin for RecordHeader<Name>where Name: Unpin,

§

impl<Name> UnwindSafe for RecordHeader<Name>where Name: 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, 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