#[repr(u8)]pub enum DrbgEntLvl {
NONE = 0,
LOW = 1,
HIGH = 2,
RFU = 3,
}Variants§
NONE = 0
NONE
LOW = 1
LOW, DRBG generates random numbers of low quality entropy
HIGH = 2
HIGH, DRBG generates random numbers of high quality entropy
RFU = 3
RFU, Reserved for Future Use
Implementations§
Source§impl DrbgEntLvl
impl DrbgEntLvl
Trait Implementations§
Source§impl Clone for DrbgEntLvl
impl Clone for DrbgEntLvl
Source§fn clone(&self) -> DrbgEntLvl
fn clone(&self) -> DrbgEntLvl
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 DrbgEntLvl
impl Debug for DrbgEntLvl
Source§impl From<DrbgEntLvl> for u8
impl From<DrbgEntLvl> for u8
Source§fn from(val: DrbgEntLvl) -> u8
fn from(val: DrbgEntLvl) -> u8
Converts to this type from the input type.
Source§impl From<u8> for DrbgEntLvl
impl From<u8> for DrbgEntLvl
Source§fn from(val: u8) -> DrbgEntLvl
fn from(val: u8) -> DrbgEntLvl
Converts to this type from the input type.
Source§impl Ord for DrbgEntLvl
impl Ord for DrbgEntLvl
Source§fn cmp(&self, other: &DrbgEntLvl) -> Ordering
fn cmp(&self, other: &DrbgEntLvl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DrbgEntLvl
impl PartialEq for DrbgEntLvl
Source§impl PartialOrd for DrbgEntLvl
impl PartialOrd for DrbgEntLvl
impl Copy for DrbgEntLvl
impl Eq for DrbgEntLvl
impl StructuralPartialEq for DrbgEntLvl
Auto Trait Implementations§
impl Freeze for DrbgEntLvl
impl RefUnwindSafe for DrbgEntLvl
impl Send for DrbgEntLvl
impl Sync for DrbgEntLvl
impl Unpin for DrbgEntLvl
impl UnwindSafe for DrbgEntLvl
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