[][src]Struct domain::rdata::rfc4034::ProtoRrsig

pub struct ProtoRrsig<Name> { /* fields omitted */ }

The RRSIG RDATA to be included when creating the signature.

Implementations

impl<Name> ProtoRrsig<Name>[src]

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

pub fn into_rrsig<Octets>(self, signature: Octets) -> Rrsig<Octets, Name>[src]

Trait Implementations

impl<Name: Clone> Clone for ProtoRrsig<Name>[src]

impl<Name: Compose> Compose for ProtoRrsig<Name>[src]

Auto Trait Implementations

impl<Name> RefUnwindSafe for ProtoRrsig<Name> where
    Name: RefUnwindSafe

impl<Name> Send for ProtoRrsig<Name> where
    Name: Send

impl<Name> Sync for ProtoRrsig<Name> where
    Name: Sync

impl<Name> Unpin for ProtoRrsig<Name> where
    Name: Unpin

impl<Name> UnwindSafe for ProtoRrsig<Name> where
    Name: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,