[][src]Enum trust_dns_proto::serialize::binary::EncodeMode

pub enum EncodeMode {
    Signing,
    Normal,
}

In the Verify mode there maybe some things which are encoded differently, e.g. SIG0 records should not be included in the additional count and not in the encoded data when in Verify

Variants

Signing

In signing mode records are written in canonical form

Normal

Write records in standard format

Trait Implementations

impl Clone for EncodeMode[src]

impl Copy for EncodeMode[src]

impl Eq for EncodeMode[src]

impl PartialEq<EncodeMode> for EncodeMode[src]

impl StructuralPartialEq for EncodeMode[src]

impl StructuralEq for EncodeMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,