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

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

Implementations

impl<Octets> Dhu<Octets>[src]

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

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

impl Dhu<()>[src]

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

Trait Implementations

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

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

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

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

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

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

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

impl<'a, Octets: AsRef<[u8]>> IntoIterator for &'a Dhu<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 Dhu<Octets>[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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