[][src]Struct domain::rdata::rfc7344::Cdnskey

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

Implementations

impl<Octets> Cdnskey<Octets>[src]

pub fn new(
    flags: u16,
    protocol: u8,
    algorithm: SecAlg,
    public_key: Octets
) -> Self
[src]

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

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

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

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

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<Octets> UnwindSafe for Cdnskey<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<Octets, T> ParseRecordData<Octets> for T where
    T: RtypeRecordData + Parse<Octets> + Compose
[src]

impl<T> RecordData for T where
    T: Compose + RtypeRecordData
[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>,