Struct domain::rdata::rfc5155::Nsec3param[][src]

pub struct Nsec3param<Octets> { /* fields omitted */ }

Implementations

impl<Octets> Nsec3param<Octets>[src]

pub fn new(
    hash_algorithm: Nsec3HashAlg,
    flags: u8,
    iterations: u16,
    salt: CharStr<Octets>
) -> Self
[src]

pub fn hash_algorithm(&self) -> Nsec3HashAlg[src]

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

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

pub fn salt(&self) -> &CharStr<Octets>[src]

Trait Implementations

impl<Octets, Other> CanonicalOrd<Nsec3param<Other>> for Nsec3param<Octets> where
    Octets: AsRef<[u8]>,
    Other: AsRef<[u8]>, 
[src]

impl<Octets: Clone> Clone for Nsec3param<Octets>[src]

impl<Octets: AsRef<[u8]>> Compose for Nsec3param<Octets>[src]

impl<Octets: AsRef<[u8]>> Debug for Nsec3param<Octets>[src]

impl<Octets: AsRef<[u8]>> Display for Nsec3param<Octets>[src]

impl<Octets: AsRef<[u8]>> Eq for Nsec3param<Octets>[src]

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

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

impl<Octets: AsRef<[u8]>> Hash for Nsec3param<Octets>[src]

impl<Octets, SrcOctets> OctetsFrom<Nsec3param<SrcOctets>> for Nsec3param<Octets> where
    Octets: OctetsFrom<SrcOctets>, 
[src]

impl<Octets: AsRef<[u8]>> Ord for Nsec3param<Octets>[src]

impl<Ref: OctetsRef> Parse<Ref> for Nsec3param<Ref::Range>[src]

impl<Octets, Other> PartialEq<Nsec3param<Other>> for Nsec3param<Octets> where
    Octets: AsRef<[u8]>,
    Other: AsRef<[u8]>, 
[src]

impl<Octets, Other> PartialOrd<Nsec3param<Other>> for Nsec3param<Octets> where
    Octets: AsRef<[u8]>,
    Other: AsRef<[u8]>, 
[src]

impl<Octets> RtypeRecordData for Nsec3param<Octets>[src]

Auto Trait Implementations

impl<Octets> RefUnwindSafe for Nsec3param<Octets> where
    Octets: RefUnwindSafe

impl<Octets> Send for Nsec3param<Octets> where
    Octets: Send

impl<Octets> Sync for Nsec3param<Octets> where
    Octets: Sync

impl<Octets> Unpin for Nsec3param<Octets> where
    Octets: Unpin

impl<Octets> UnwindSafe for Nsec3param<Octets> where
    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>,