pub enum Nsec3HashAlg {
Sha1,
Int(u8),
}
Expand description
NSEC3 hash algorithm numbers.
This type selects the algorithm used to hash domain names for use with the NSEC3.
For the currently registered values see the IANA registration. This type is complete as of 2008-03-05.
Variants§
Implementations§
source§impl Nsec3HashAlg
impl Nsec3HashAlg
sourcepub fn from_mnemonic(m: &[u8]) -> Option<Self>
pub fn from_mnemonic(m: &[u8]) -> Option<Self>
Returns a value from a well-defined mnemonic.
sourcepub const fn to_mnemonic(self) -> Option<&'static [u8]>
pub const fn to_mnemonic(self) -> Option<&'static [u8]>
Returns the mnemonic for this value if there is one.
This will also return a mnemonic if a well-defined variant
is hidden in a Int
variant.
pub fn parse<'a, Octs: AsRef<[u8]> + ?Sized>( parser: &mut Parser<'a, Octs> ) -> Result<Self, ParseError>
pub const COMPOSE_LEN: u16 = 1u16
pub fn compose<Target: OctetsBuilder + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
source§impl Nsec3HashAlg
impl Nsec3HashAlg
pub fn from_bytes(bytes: &[u8]) -> Option<Self>
Trait Implementations§
source§impl Clone for Nsec3HashAlg
impl Clone for Nsec3HashAlg
source§fn clone(&self) -> Nsec3HashAlg
fn clone(&self) -> Nsec3HashAlg
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Nsec3HashAlg
impl Debug for Nsec3HashAlg
source§impl Display for Nsec3HashAlg
impl Display for Nsec3HashAlg
source§impl<'a> From<&'a Nsec3HashAlg> for u8
impl<'a> From<&'a Nsec3HashAlg> for u8
source§fn from(value: &'a Nsec3HashAlg) -> Self
fn from(value: &'a Nsec3HashAlg) -> Self
Converts to this type from the input type.
source§impl From<Nsec3HashAlg> for u8
impl From<Nsec3HashAlg> for u8
source§fn from(value: Nsec3HashAlg) -> Self
fn from(value: Nsec3HashAlg) -> Self
Converts to this type from the input type.
source§impl From<u8> for Nsec3HashAlg
impl From<u8> for Nsec3HashAlg
source§impl FromStr for Nsec3HashAlg
impl FromStr for Nsec3HashAlg
source§impl Hash for Nsec3HashAlg
impl Hash for Nsec3HashAlg
source§impl Ord for Nsec3HashAlg
impl Ord for Nsec3HashAlg
source§impl PartialEq<Nsec3HashAlg> for Nsec3HashAlg
impl PartialEq<Nsec3HashAlg> for Nsec3HashAlg
source§impl PartialEq<Nsec3HashAlg> for u8
impl PartialEq<Nsec3HashAlg> for u8
source§fn eq(&self, other: &Nsec3HashAlg) -> bool
fn eq(&self, other: &Nsec3HashAlg) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<u8> for Nsec3HashAlg
impl PartialEq<u8> for Nsec3HashAlg
source§impl PartialOrd<Nsec3HashAlg> for Nsec3HashAlg
impl PartialOrd<Nsec3HashAlg> for Nsec3HashAlg
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl PartialOrd<Nsec3HashAlg> for u8
impl PartialOrd<Nsec3HashAlg> for u8
source§fn partial_cmp(&self, other: &Nsec3HashAlg) -> Option<Ordering>
fn partial_cmp(&self, other: &Nsec3HashAlg) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl PartialOrd<u8> for Nsec3HashAlg
impl PartialOrd<u8> for Nsec3HashAlg
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moreimpl Copy for Nsec3HashAlg
impl Eq for Nsec3HashAlg
Auto Trait Implementations§
impl RefUnwindSafe for Nsec3HashAlg
impl Send for Nsec3HashAlg
impl Sync for Nsec3HashAlg
impl Unpin for Nsec3HashAlg
impl UnwindSafe for Nsec3HashAlg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Targetwhere
Self::Error: Into<Infallible>,
fn octets_into(self) -> Targetwhere Self::Error: Into<Infallible>,
Performs an infallible conversion.