Trait libafl::bolts::rands::RandomSeed[][src]

pub trait RandomSeed: Rand + Default {
    fn new() -> Self;
}
Expand description

Initialize Rand types from a source of randomness.

Default implementations are provided with the “std” feature enabled, using system time in nanoseconds as the initial seed.

Required methods

Creates a new RandomSeed.

Implementors