[][src]Struct stm32f4_prng::RngConfig

pub struct RngConfig {
    pub min_init_cycles: u32,
    pub max_init_cycles: u32,
    pub entropy_sources: EntropySources,
}

Configuration values for seeding the PRNG

Fields

min_init_cycles: u32

Minimum number of randomly generated words to discard

Note: If this is less than 1024, 1024 numbers will be discarded

max_init_cycles: u32

Maximum number of randomly generated words to discard

Note: This must be greater than min_init_cycles, or the values will be swapped

entropy_sources: EntropySources

The sources to use for runtime entropy gathering for the initial seed value. Options include:

  • Device Info, such as serial number and die position
  • Internal Temperature Sensor
  • Internal VRef measurement

Trait Implementations

impl Clone for RngConfig[src]

impl Copy for RngConfig[src]

impl Debug for RngConfig[src]

impl Default for RngConfig[src]

Auto Trait Implementations

impl Send for RngConfig

impl Sync for RngConfig

impl Unpin for RngConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,