Struct domain::base::record::ParsedRecord

source ·
pub struct ParsedRecord<'a, Octs: Octets + ?Sized> { /* private fields */ }
Expand description

A raw record parsed from a message.

A value of this type contains the record header and the raw record data. It is mainly used as an intermediary type when turning raw message data into Records.

It allows access to the header only but can be traded for a real record of a specific type of ParseRecordData (i.e., some type that knowns how to parse record data) via the to_record and into_record methods.

Implementations§

source§

impl<'a, Octs: Octets + ?Sized> ParsedRecord<'a, Octs>

source

pub fn new( header: RecordHeader<ParsedName<&'a Octs>>, data: Parser<'a, Octs> ) -> Self

Creates a new parsed record from a header and the record data.

The record data is provided via a parser that is positioned at the first byte of the record data.

source

pub fn owner(&self) -> ParsedName<&'a Octs>

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§

impl<'a, Octs: Octets + ?Sized> ParsedRecord<'a, Octs>

source

pub fn to_record<Data>( &self ) -> Result<Option<Record<ParsedName<Octs::Range<'_>>, Data>>, ParseError>
where Data: ParseRecordData<'a, Octs>,

Creates a real resource record if the record data type supports it.

The method is generic over a type that knows how to parse record data via the ParseRecordData trait. The record data is given to this trait for parsing. If the trait feels capable of parsing this type of record (as indicated by the record type) and parsing succeeds, the method returns Ok(Some(_)). It returns Ok(None) if the trait doesn’t know how to parse this particular record type. It returns an error if parsing fails.

source

pub fn to_any_record<Data>( &self ) -> Result<Record<ParsedName<Octs::Range<'_>>, Data>, ParseError>
where Data: ParseAnyRecordData<'a, Octs>,

Creates a real resource record.

The method is generic over a type that knows how to parse record data via the ParseAnyRecordData trait. The record data is given to this trait for parsing.

source

pub fn into_record<Data>( self ) -> Result<Option<Record<ParsedName<Octs::Range<'a>>, Data>>, ParseError>
where Data: ParseRecordData<'a, Octs>,

Trades for a real resource record if the record data type supports it.

The method is generic over a type that knows how to parse record data via the ParseRecordData trait. The record data is given to this trait for parsing. If the trait feels capable of parsing this type of record (as indicated by the record type) and parsing succeeds, the method returns Ok(Some(_)). It returns Ok(None) if the trait doesn’t know how to parse this particular record type. It returns an error if parsing fails.

source

pub fn into_any_record<Data>( self ) -> Result<Record<ParsedName<Octs::Range<'a>>, Data>, ParseError>
where Data: ParseAnyRecordData<'a, Octs>,

Trades for a real resource record.

The method is generic over a type that knows how to parse record data via the ParseAnyRecordData trait. The record data is given to this trait for parsing. #[allow(clippy::type_complexity)]

source§

impl<'a, Octs: Octets + ?Sized> ParsedRecord<'a, Octs>

source

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

source

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

Trait Implementations§

source§

impl<'a, Octs: Clone + Octets + ?Sized> Clone for ParsedRecord<'a, Octs>

source§

fn clone(&self) -> ParsedRecord<'a, Octs>

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<'a, 'o, Octs, Other> PartialEq<ParsedRecord<'o, Other>> for ParsedRecord<'a, Octs>
where Octs: Octets + ?Sized, Other: Octets + ?Sized,

source§

fn eq(&self, other: &ParsedRecord<'o, Other>) -> 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<'a, Octs: Octets + ?Sized> Eq for ParsedRecord<'a, Octs>

Auto Trait Implementations§

§

impl<'a, Octs> Freeze for ParsedRecord<'a, Octs>
where Octs: ?Sized,

§

impl<'a, Octs> RefUnwindSafe for ParsedRecord<'a, Octs>
where Octs: RefUnwindSafe + ?Sized,

§

impl<'a, Octs> Send for ParsedRecord<'a, Octs>
where Octs: Sync + ?Sized,

§

impl<'a, Octs> Sync for ParsedRecord<'a, Octs>
where Octs: Sync + ?Sized,

§

impl<'a, Octs> Unpin for ParsedRecord<'a, Octs>
where Octs: ?Sized,

§

impl<'a, Octs> UnwindSafe for ParsedRecord<'a, Octs>
where Octs: RefUnwindSafe + ?Sized,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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 Source
where 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) -> Target
where Self::Error: Into<Infallible>,

Performs an infallible conversion.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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 T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more