pub enum EntropySources {
TempOnly(SampleTime),
VrefOnly(SampleTime),
DevInfoAndTemp(SampleTime),
DevInfoAndVref(SampleTime),
TempAndVref(SampleTime),
AllSources(SampleTime),
}
Expand description
The sources of entropy to use
Variants§
TempOnly(SampleTime)
VrefOnly(SampleTime)
DevInfoAndTemp(SampleTime)
DevInfoAndVref(SampleTime)
TempAndVref(SampleTime)
AllSources(SampleTime)
Trait Implementations§
Source§impl Clone for EntropySources
impl Clone for EntropySources
Source§fn clone(&self) -> EntropySources
fn clone(&self) -> EntropySources
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 EntropySources
impl Debug for EntropySources
impl Copy for EntropySources
Auto Trait Implementations§
impl Freeze for EntropySources
impl RefUnwindSafe for EntropySources
impl Send for EntropySources
impl Sync for EntropySources
impl Unpin for EntropySources
impl UnwindSafe for EntropySources
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