[][src]Crate random_fast_rng

Re-exports

pub extern crate random_trait;

Structs

FastRng
ThreadFastRng

Traits

Random

This is the base trait of the crate. By implementing the required method on your random generator source it will give you a long list of functions, the important of them is Random::gen() -> T which will produce a random value for every type which implements GenerateRand (you can implement this for your own types).