Trait kernel::hil::rng::RNG [] [src]

pub trait RNG {
    fn get(&self);
}

Generic interface for a random number generator

Implementors should assume the client implements the Client trait.

Required Methods

Initiate the aquisition of new random number generation.

The implementor may ignore this command if the generation proccess is already in progress.

Implementors