#[repr(u8)]pub enum DigestType {
Reserved = 0,
Sha1 = 1,
Sha256 = 2,
GostR = 3,
Sha384 = 4,
}
Expand description
https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml#ds-rr-types-1
Variants§
Trait Implementations§
Source§impl Clone for DigestType
impl Clone for DigestType
Source§fn clone(&self) -> DigestType
fn clone(&self) -> DigestType
Returns a duplicate 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 DigestType
impl Debug for DigestType
Source§impl Display for DigestType
impl Display for DigestType
Source§impl Hash for DigestType
impl Hash for DigestType
Source§impl PartialEq for DigestType
impl PartialEq for DigestType
Source§impl TryFrom<u8> for DigestType
impl TryFrom<u8> for DigestType
impl Copy for DigestType
impl Eq for DigestType
impl StructuralPartialEq for DigestType
Auto Trait Implementations§
impl Freeze for DigestType
impl RefUnwindSafe for DigestType
impl Send for DigestType
impl Sync for DigestType
impl Unpin for DigestType
impl UnwindSafe for DigestType
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