Struct rand::ThreadRng
[-] [+]
[src]
pub struct ThreadRng {
// some fields omitted
}The thread-local RNG.
pub struct ThreadRng {
// some fields omitted
}The thread-local RNG.
impl Rng for ThreadRngfn next_u32(&mut self) -> u32fn next_u64(&mut self) -> u64fn fill_bytes(&mut self, bytes: &mut [u8])fn next_f32(&mut self) -> f32fn next_f64(&mut self) -> f64fn gen<T: Rand>(&mut self) -> Tfn gen_iter<'a, T: Rand>(&'a mut self) -> Generator<'a, T, Self>fn gen_range<T: PartialOrd + SampleRange>(&mut self, low: T, high: T) -> Tfn gen_weighted_bool(&mut self, n: u32) -> boolfn gen_ascii_chars<'a>(&'a mut self) -> AsciiGenerator<'a, Self>fn choose<'a, T>(&mut self, values: &'a [T]) -> Option<&'a T>fn shuffle<T>(&mut self, values: &mut [T])impl Clone for ThreadRngfn clone(&self) -> ThreadRngfn clone_from(&mut self, source: &Self)
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).