pub struct RDataTSIG {
    pub algorithm_name: Vec<u8>,
    pub time_signed: u64,
    pub fudge: u16,
    pub mac: Vec<u8>,
    pub original_id: u16,
    pub error: TSigResponseCode,
    pub other_data: Vec<u8>,
}

Fields

algorithm_name: Vec<u8>time_signed: u64

Seconds since epoch

fudge: u16

Seconds of error permitted

mac: Vec<u8>original_id: u16

Original message ID

error: TSigResponseCode

Extended rcode covering TSIG processing

other_data: Vec<u8>

Empty unless error == BADTIME

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.