[][src]Struct picorand::WyRand

pub struct WyRand { /* fields omitted */ }

A WyRand PRNG instance. Note: This PRNG is NOT cryptographically secure.

Trait Implementations

impl PicoRandRNG for WyRand[src]

type Input = u64

Input type for the PRNG.

type Output = u64

Output type for the PRNG.

pub fn new(seed: Self::Input) -> Self[src]

Create a new WyRand instance using a specific seed.

pub fn rand(&mut self) -> Self::Output[src]

Generate a new number using the WyRand PRNG.

pub fn rand_range(&mut self, min: usize, max: usize) -> Self::Output[src]

Constrain a randomly generated number to a fixed range.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.