[][src]Struct domain::base::opt::rfc6975::Dau

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

Implementations

impl<Octets> Dau<Octets>[src]

pub fn from_octets(octets: Octets) -> Self[src]

pub fn iter(&self) -> SecAlgsIter where
    Octets: AsRef<[u8]>, 
[src]

impl Dau<()>[src]

pub fn push<Target: OctetsBuilder>(
    builder: &mut OptBuilder<Target>,
    algs: &[SecAlg]
) -> Result<(), ShortBuf>
[src]

Trait Implementations

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

impl<Octets> CodeOptData for Dau<Octets>[src]

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

impl<Octets: Debug> Debug for Dau<Octets>[src]

impl<Octets: Eq> Eq for Dau<Octets>[src]

impl<Octets> From<Dau<Octets>> for AllOptData<Octets>[src]

impl<Octets: Hash> Hash for Dau<Octets>[src]

impl<'a, Octets: AsRef<[u8]>> IntoIterator for &'a Dau<Octets>[src]

type Item = SecAlg

The type of the elements being iterated over.

type IntoIter = SecAlgsIter<'a>

Which kind of iterator are we turning this into?

impl<Octets: Ord> Ord for Dau<Octets>[src]

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

impl<Octets: PartialEq> PartialEq<Dau<Octets>> for Dau<Octets>[src]

impl<Octets: PartialOrd> PartialOrd<Dau<Octets>> for Dau<Octets>[src]

impl<Octets> StructuralEq for Dau<Octets>[src]

impl<Octets> StructuralPartialEq for Dau<Octets>[src]

Auto Trait Implementations

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

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

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

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

impl<Octets> UnwindSafe for Dau<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<T> OptData for T where
    T: Compose + CodeOptData
[src]

impl<Octets, T> ParseOptData<Octets> for T where
    T: CodeOptData + Parse<Octets> + Compose
[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>,