pub struct RecordSet { /* private fields */ }
Expand description

Set of resource records associated to a name and type

Implementations§

source§

impl RecordSet

source

pub fn new(name: &Name, record_type: RecordType, serial: u32) -> Self

Creates a new Resource Record Set.

§Arguments
  • name - The label for the RecordSet
  • record_type - RecordType of this RecordSet, all records in the RecordSet must be of the specified RecordType.
  • serial - current serial number of the SOA record, this is to be used for IXFR and signing for DNSSec after updates.
§Return value

The newly created Resource Record Set TODO: make all cloned params pass by value

source

pub fn with_ttl(name: Name, record_type: RecordType, ttl: u32) -> Self

Creates a new Resource Record Set.

§Arguments
  • name - The label for the RecordSet
  • record_type - RecordType of this RecordSet, all records in the RecordSet must be of the specified RecordType.
  • ttl - time-to-live for the RecordSet in seconds.
§Return value

The newly created Resource Record Set TODO: make all cloned params pass by value

source

pub fn name(&self) -> &Name

§Return value

Label of the Resource Record Set

source

pub fn record_type(&self) -> RecordType

§Return value

RecordType of the Resource Record Set

source

pub fn set_dns_class(&mut self, dns_class: DNSClass)

Sets the DNSClass to the specified value

This will traverse every record and associate with it the specified dns_class

source

pub fn dns_class(&self) -> DNSClass

Returns the DNSClass of the RecordSet

source

pub fn set_ttl(&mut self, ttl: u32)

Sets the TTL, in seconds, to the specified value

This will traverse every record and associate with it the specified ttl

source

pub fn ttl(&self) -> u32

Returns the time-to-live for the record.

§Return value

TTL, time-to-live, of the Resource Record Set, this is the maximum length of time that an RecordSet should be cached.

source

pub fn records_without_rrsigs(&self) -> RrsetRecords<'_>

Returns a Vec of all records in the set, without any RRSIGs.

source

pub fn iter(&self) -> Iter<'_, Record>

👎Deprecated: see records_without_rrsigs

Returns an iterator over the records in the set

source

pub fn is_empty(&self) -> bool

Returns true if there are no records in this set

source

pub fn serial(&self) -> u32

Returns the serial number at which the record was updated.

source

pub fn rrsigs(&self) -> &[Record]

Returns a slice of all the Records signatures in the RecordSet

source

pub fn insert_rrsig(&mut self, rrsig: Record)

Inserts a Signature for the Record set

Many can be associated with the RecordSet. Once added, the RecordSet should not be changed

§Arguments
  • rrsig - A signature which covers the RecordSet.
source

pub fn clear_rrsigs(&mut self)

Useful for clearing all signatures when the RecordSet is updated, or keys are rotated.

source

pub fn new_record(&mut self, rdata: &RData) -> &Record

creates a new Record as part of this RecordSet, adding the associated RData

this interface may be deprecated in the future.

source

pub fn add_rdata(&mut self, rdata: RData) -> bool

creates a new Record as part of this RecordSet, adding the associated RData

source

pub fn insert(&mut self, record: Record, serial: u32) -> bool

Inserts a new Resource Record into the Set.

If the record is inserted, the ttl for the most recent record will be used for the ttl of the entire resource record set.

This abides by the following restrictions in RFC 2136, April 1997:

1.1.5. The following RR types cannot be appended to an RRset.  If the
 following comparison rules are met, then an attempt to add the new RR
 will result in the replacement of the previous RR:

SOA    compare only NAME, CLASS and TYPE -- it is not possible to
        have more than one SOA per zone, even if any of the data
        fields differ.

CNAME  compare only NAME, CLASS, and TYPE -- it is not possible
        to have more than one CNAME RR, even if their data fields
        differ.
§Arguments
  • record - Record asserts that the name and record_type match the RecordSet.
  • serial - current serial number of the SOA record, this is to be used for IXFR and signing for DNSSec after updates. The serial will only be updated if the record was added.
§Return value

True if the record was inserted.

TODO: make a default add without serial number for basic usage

source

pub fn remove(&mut self, record: &Record, serial: u32) -> bool

Removes the Resource Record if it exists.

§Arguments
  • record - Record asserts that the name and record_type match the RecordSet. Removes any record if the record data, RData, match.
  • serial - current serial number of the SOA record, this is to be used for IXFR and signing for DNSSec after updates. The serial will only be updated if the record was added.
§Return value

True if a record was removed.

source

pub fn into_parts(self) -> RecordSetParts

Consumes RecordSet and returns its components

Trait Implementations§

source§

impl Clone for RecordSet

source§

fn clone(&self) -> RecordSet

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 Debug for RecordSet

source§

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

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

impl From<Record> for RecordSet

source§

fn from(record: Record) -> Self

Converts to this type from the input type.
source§

impl IntoIterator for RecordSet

§

type Item = Record

The type of the elements being iterated over.
§

type IntoIter = Chain<IntoIter<Record>, IntoIter<Record>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoRecordSet for RecordSet

source§

fn into_record_set(self) -> Self

👎Deprecated: use From/Into
Performs the conversion to a RecordSet
source§

impl PartialEq for RecordSet

source§

fn eq(&self, other: &RecordSet) -> 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 Eq for RecordSet

source§

impl StructuralPartialEq for RecordSet

Auto Trait Implementations§

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<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