pub trait UpdateRequest {
    fn id(&self) -> u16;
fn zone(&self) -> &LowerQuery;
fn prerequisites(&self) -> &[Record];
fn updates(&self) -> &[Record];
fn additionals(&self) -> &[Record];
fn sig0(&self) -> &[Record]; }
Expand description

A type which represents an MessageRequest for dynamic Update.

Required methods

Id of the Message

Zone being updated, this should be the query of a Message

Prerequisites map to the answers of a Message

Records to update map to the name_servers of a Message

Additional records

SIG0 records for verifying the Message

Implementors