[][src]Struct domain_core::rdata::rfc4034::Rrsig

pub struct Rrsig { /* fields omitted */ }

Methods

impl Rrsig[src]

pub fn new(
    type_covered: Rtype,
    algorithm: SecAlg,
    labels: u8,
    original_ttl: u32,
    expiration: Serial,
    inception: Serial,
    key_tag: u16,
    signer_name: Dname,
    signature: Bytes
) -> Self
[src]

pub fn type_covered(&self) -> Rtype[src]

pub fn algorithm(&self) -> SecAlg[src]

pub fn labels(&self) -> u8[src]

pub fn original_ttl(&self) -> u32[src]

pub fn expiration(&self) -> Serial[src]

pub fn inception(&self) -> Serial[src]

pub fn key_tag(&self) -> u16[src]

pub fn signer_name(&self) -> &Dname[src]

pub fn signature(&self) -> &Bytes[src]

Trait Implementations

impl Compose for Rrsig[src]

impl Compress for Rrsig[src]

impl ParseAll for Rrsig[src]

type Err = DnameBytesError

The type returned when parsing fails.

impl RtypeRecordData for Rrsig[src]

impl Scan for Rrsig[src]

impl<N> From<Rrsig> for MasterRecordData<N>[src]

impl<N> From<Rrsig> for AllRecordData<N>[src]

impl PartialEq<Rrsig> for Rrsig[src]

impl PartialOrd<Rrsig> for Rrsig[src]

impl Eq for Rrsig[src]

impl Clone for Rrsig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Rrsig[src]

impl Display for Rrsig[src]

impl Hash for Rrsig[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Rrsig

impl Sync for Rrsig

Blanket Implementations

impl<T> RecordData for T where
    T: Compose + Compress + RtypeRecordData
[src]

impl<T> ParseRecordData for T where
    T: Compose + Compress + ParseAll + RtypeRecordData
[src]

type Err = <T as ParseAll>::Err

The type of an error returned when parsing fails.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.