Trait libafl_bolts::rands::RandomSeed

source ·
pub trait RandomSeed: Rand + Default {
    // Required method
    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§

source

fn new() -> Self

Creates a new RandomSeed.

Object Safety§

This trait is not object safe.

Implementors§