#[repr(u8)]pub enum SampMode {
SAMP_MODE_VON_BOTH = 0,
SAMP_MODE_RAW_BOTH = 1,
SAMP_MODE_VON_ENT = 2,
SAMP_MODE_UNDEF = 3,
}Variants§
SAMP_MODE_VON_BOTH = 0
use Von Neumann data into both Entropy shifter and Statistical Checker.
SAMP_MODE_RAW_BOTH = 1
use raw data into both Entropy shifter and Statistical Checker.
SAMP_MODE_VON_ENT = 2
use Von Neumann data into Entropy shifter. Use raw data into Statistical Checker.
SAMP_MODE_UNDEF = 3
undefined/reserved.
Implementations§
Trait Implementations§
Source§impl Ord for SampMode
impl Ord for SampMode
Source§impl PartialOrd for SampMode
impl PartialOrd for SampMode
impl Copy for SampMode
impl Eq for SampMode
impl StructuralPartialEq for SampMode
Auto Trait Implementations§
impl Freeze for SampMode
impl RefUnwindSafe for SampMode
impl Send for SampMode
impl Sync for SampMode
impl Unpin for SampMode
impl UnwindSafe for SampMode
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