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

pub struct Rrsig<Octets, Name> { /* fields omitted */ }

Implementations

impl<Octets, Name> Rrsig<Octets, 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,
    signature: Octets
) -> 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) -> &Name[src]

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

pub fn set_signature(&mut self, signature: Octets)[src]

Trait Implementations

impl<N, NN, O, OO> CanonicalOrd<Rrsig<OO, NN>> for Rrsig<O, N> where
    N: ToDname,
    NN: ToDname,
    O: AsRef<[u8]>,
    OO: AsRef<[u8]>, 
[src]

impl<Octets: Clone, Name: Clone> Clone for Rrsig<Octets, Name>[src]

impl<Octets: AsRef<[u8]>, Name: Compose> Compose for Rrsig<Octets, Name>[src]

impl<Octets, Name> Debug for Rrsig<Octets, Name> where
    Octets: AsRef<[u8]>,
    Name: Debug
[src]

impl<Octets, Name> Display for Rrsig<Octets, Name> where
    Octets: AsRef<[u8]>,
    Name: Display
[src]

impl<Octets, Name> Eq for Rrsig<Octets, Name> where
    Octets: AsRef<[u8]>,
    Name: ToDname
[src]

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

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

impl<O: AsRef<[u8]>, N: Hash> Hash for Rrsig<O, N>[src]

impl<Octets, SrcOctets, Name, SrcName> OctetsFrom<Rrsig<SrcOctets, SrcName>> for Rrsig<Octets, Name> where
    Octets: OctetsFrom<SrcOctets>,
    Name: OctetsFrom<SrcName>, 
[src]

impl<O: AsRef<[u8]>, N: ToDname> Ord for Rrsig<O, N>[src]

impl<Ref: OctetsRef> Parse<Ref> for Rrsig<Ref::Range, ParsedDname<Ref>>[src]

impl<N, NN, O, OO> PartialEq<Rrsig<OO, NN>> for Rrsig<O, N> where
    N: ToDname,
    NN: ToDname,
    O: AsRef<[u8]>,
    OO: AsRef<[u8]>, 
[src]

impl<N, NN, O, OO> PartialOrd<Rrsig<OO, NN>> for Rrsig<O, N> where
    N: ToDname,
    NN: ToDname,
    O: AsRef<[u8]>,
    OO: AsRef<[u8]>, 
[src]

impl<Octets, Name> RtypeRecordData for Rrsig<Octets, Name>[src]

Auto Trait Implementations

impl<Octets, Name> RefUnwindSafe for Rrsig<Octets, Name> where
    Name: RefUnwindSafe,
    Octets: RefUnwindSafe

impl<Octets, Name> Send for Rrsig<Octets, Name> where
    Name: Send,
    Octets: Send

impl<Octets, Name> Sync for Rrsig<Octets, Name> where
    Name: Sync,
    Octets: Sync

impl<Octets, Name> Unpin for Rrsig<Octets, Name> where
    Name: Unpin,
    Octets: Unpin

impl<Octets, Name> UnwindSafe for Rrsig<Octets, Name> where
    Name: UnwindSafe,
    Octets: 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<Source, Target> OctetsInto<Target> for Source where
    Target: OctetsFrom<Source>, 
[src]

impl<Octets, T> ParseRecordData<Octets> for T where
    T: RtypeRecordData + Parse<Octets> + Compose
[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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