Struct domain::rdata::rfc5155::OwnerHash

source ·
pub struct OwnerHash<Octets: ?Sized>(_);
Expand description

The hash over the next owner name.

This hash is used instead of the actual owner name in an NSEC3 record.

The hash can never be longer than 255 octets since its lenght is encoded as a single octet.

For its presentation format, the hash uses an unpadded Base 32 encoding with no whitespace allowed.

Implementations§

source§

impl<Octets: ?Sized> OwnerHash<Octets>

source

pub fn from_octets(octets: Octets) -> Result<Self, OwnerHashError>where Octets: AsRef<[u8]> + Sized,

Creates a new owner hash from the given octets.

Returns succesfully if octets can indeed be used as a character string, i.e., it is not longer than 255 bytes.

source

pub fn into_octets(self) -> Octetswhere Octets: Sized,

Converts the hash into the underlying octets.

source

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

Returns a reference to a slice of the hash.

source§

impl OwnerHash<Bytes>

source

pub fn from_bytes(bytes: Bytes) -> Result<Self, OwnerHashError>

Creates a new owner hash from a bytes value.

source§

impl OwnerHash<[u8]>

source

pub fn from_slice(slice: &[u8]) -> Result<&Self, OwnerHashError>

Creates a new owner hash from an octet slice.

Trait Implementations§

source§

impl<Octets: AsRef<U> + ?Sized, U: ?Sized> AsRef<U> for OwnerHash<Octets>

source§

fn as_ref(&self) -> &U

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T, U> CanonicalOrd<OwnerHash<U>> for OwnerHash<T>where T: AsRef<[u8]> + ?Sized, U: AsRef<[u8]> + ?Sized,

source§

fn canonical_cmp(&self, other: &OwnerHash<U>) -> Ordering

Returns the canonical ordering between self and other.
source§

fn canonical_lt(&self, other: &Rhs) -> bool

Returns whether self is canonically less than other.
source§

fn canonical_le(&self, other: &Rhs) -> bool

Returns whether self is canonically less than or equal to other.
source§

fn canonical_gt(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than other.
source§

fn canonical_ge(&self, other: &Rhs) -> bool

Returns whether self is canonically greater than or equal to other.
source§

impl<Octets: Clone + ?Sized> Clone for OwnerHash<Octets>

source§

fn clone(&self) -> OwnerHash<Octets>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Octets: AsRef<[u8]> + ?Sized> Compose for OwnerHash<Octets>

source§

fn compose<Target: OctetsBuilder + AsMut<[u8]>>( &self, target: &mut Target ) -> Result<(), ShortBuf>

Appends the concrete representation of the value to the target. Read more
source§

fn compose_canonical<T: OctetsBuilder + AsMut<[u8]>>( &self, target: &mut T ) -> Result<(), ShortBuf>

Appends the canonical representation of the value to the target. Read more
source§

impl<Octets: AsRef<[u8]> + ?Sized> Debug for OwnerHash<Octets>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Octets: ?Sized> Deref for OwnerHash<Octets>

§

type Target = Octets

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<Octets: AsRef<[u8]> + ?Sized> Display for OwnerHash<Octets>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Octets> FromStr for OwnerHash<Octets>where Octets: FromBuilder, <Octets as FromBuilder>::Builder: OctetsBuilder<Octets = Octets> + EmptyBuilder,

§

type Err = DecodeError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl<T: AsRef<[u8]> + ?Sized> Hash for OwnerHash<T>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
source§

impl<Octets, SrcOctets> OctetsFrom<OwnerHash<SrcOctets>> for OwnerHash<Octets>where Octets: OctetsFrom<SrcOctets>,

source§

fn octets_from(source: OwnerHash<SrcOctets>) -> Result<Self, ShortBuf>

Performs the conversion.
source§

impl<T: AsRef<[u8]> + ?Sized> Ord for OwnerHash<T>

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
source§

impl<Ref: OctetsRef> Parse<Ref> for OwnerHash<Ref::Range>

source§

fn parse(parser: &mut Parser<Ref>) -> Result<Self, ParseError>

Extracts a value from the beginning of parser. Read more
source§

fn skip(parser: &mut Parser<Ref>) -> Result<(), ParseError>

Skips over a value of this type at the beginning of parser. Read more
source§

impl<T, U> PartialEq<U> for OwnerHash<T>where T: AsRef<[u8]> + ?Sized, U: AsRef<[u8]> + ?Sized,

source§

fn eq(&self, other: &U) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T, U> PartialOrd<U> for OwnerHash<T>where T: AsRef<[u8]> + ?Sized, U: AsRef<[u8]> + ?Sized,

source§

fn partial_cmp(&self, other: &U) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T: AsRef<[u8]> + ?Sized> Eq for OwnerHash<T>

Auto Trait Implementations§

§

impl<Octets: ?Sized> RefUnwindSafe for OwnerHash<Octets>where Octets: RefUnwindSafe,

§

impl<Octets: ?Sized> Send for OwnerHash<Octets>where Octets: Send,

§

impl<Octets: ?Sized> Sync for OwnerHash<Octets>where Octets: Sync,

§

impl<Octets: ?Sized> Unpin for OwnerHash<Octets>where Octets: Unpin,

§

impl<Octets: ?Sized> UnwindSafe for OwnerHash<Octets>where Octets: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Source, Target> OctetsInto<Target> for Sourcewhere Target: OctetsFrom<Source>,

source§

fn octets_into(self) -> Result<Target, ShortBuf>

Performs the conversion.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V