Struct rand_xoshiro::Xoroshiro64Star
source · [−]pub struct Xoroshiro64Star { /* private fields */ }Expand description
A xoroshiro64* random number generator.
The xoroshiro64* algorithm is not suitable for cryptographic purposes, but is very fast and has good statistical properties, besides a low linear complexity in the lowest bits.
The algorithm used here is translated from the xoroshiro64star.c
reference source code by
David Blackman and Sebastiano Vigna.
Trait Implementations
sourceimpl Clone for Xoroshiro64Star
impl Clone for Xoroshiro64Star
sourcefn clone(&self) -> Xoroshiro64Star
fn clone(&self) -> Xoroshiro64Star
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Xoroshiro64Star
impl Debug for Xoroshiro64Star
sourceimpl PartialEq<Xoroshiro64Star> for Xoroshiro64Star
impl PartialEq<Xoroshiro64Star> for Xoroshiro64Star
sourcefn eq(&self, other: &Xoroshiro64Star) -> bool
fn eq(&self, other: &Xoroshiro64Star) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Xoroshiro64Star) -> bool
fn ne(&self, other: &Xoroshiro64Star) -> bool
This method tests for !=.
sourceimpl RngCore for Xoroshiro64Star
impl RngCore for Xoroshiro64Star
sourceimpl SeedableRng for Xoroshiro64Star
impl SeedableRng for Xoroshiro64Star
sourcefn from_seed(seed: [u8; 8]) -> Xoroshiro64Star
fn from_seed(seed: [u8; 8]) -> Xoroshiro64Star
Create a new Xoroshiro64Star. If seed is entirely 0, it will be
mapped to a different seed.
sourcefn seed_from_u64(seed: u64) -> Xoroshiro64Star
fn seed_from_u64(seed: u64) -> Xoroshiro64Star
Seed a Xoroshiro64Star from a u64 using SplitMix64.
type Seed = [u8; 8]
type Seed = [u8; 8]
Seed type, which is restricted to types mutably-dereferencable as u8
arrays (we recommend [u8; N] for some N). Read more
sourcefn from_rng<R>(rng: R) -> Result<Self, Error> where
R: RngCore,
fn from_rng<R>(rng: R) -> Result<Self, Error> where
R: RngCore,
Create a new PRNG seeded from another Rng. Read more
sourcefn from_entropy() -> Self
fn from_entropy() -> Self
impl Eq for Xoroshiro64Star
impl StructuralEq for Xoroshiro64Star
impl StructuralPartialEq for Xoroshiro64Star
Auto Trait Implementations
impl RefUnwindSafe for Xoroshiro64Star
impl Send for Xoroshiro64Star
impl Sync for Xoroshiro64Star
impl Unpin for Xoroshiro64Star
impl UnwindSafe for Xoroshiro64Star
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
