Struct rand_xoshiro::Xoroshiro64StarStar
source · pub struct Xoroshiro64StarStar { /* private fields */ }
Expand description
A xoroshiro64** random number generator.
The xoshiro64** algorithm is not suitable for cryptographic purposes, but is very fast and has excellent statistical properties.
The algorithm used here is translated from the xoroshiro64starstar.c
reference source code by
David Blackman and Sebastiano Vigna.
Trait Implementations§
source§impl Clone for Xoroshiro64StarStar
impl Clone for Xoroshiro64StarStar
source§fn clone(&self) -> Xoroshiro64StarStar
fn clone(&self) -> Xoroshiro64StarStar
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Xoroshiro64StarStar
impl Debug for Xoroshiro64StarStar
source§impl PartialEq for Xoroshiro64StarStar
impl PartialEq for Xoroshiro64StarStar
source§fn eq(&self, other: &Xoroshiro64StarStar) -> bool
fn eq(&self, other: &Xoroshiro64StarStar) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RngCore for Xoroshiro64StarStar
impl RngCore for Xoroshiro64StarStar
source§fn fill_bytes(&mut self, dest: &mut [u8])
fn fill_bytes(&mut self, dest: &mut [u8])
Fill
dest
with random data. Read moresource§impl SeedableRng for Xoroshiro64StarStar
impl SeedableRng for Xoroshiro64StarStar
source§fn from_seed(seed: [u8; 8]) -> Xoroshiro64StarStar
fn from_seed(seed: [u8; 8]) -> Xoroshiro64StarStar
Create a new Xoroshiro64StarStar
. If seed
is entirely 0, it will be
mapped to a different seed.
source§fn seed_from_u64(seed: u64) -> Xoroshiro64StarStar
fn seed_from_u64(seed: u64) -> Xoroshiro64StarStar
Seed a Xoroshiro64StarStar
from a u64
using SplitMix64
.
§type Seed = [u8; 8]
type Seed = [u8; 8]
Seed type, which is restricted to types mutably-dereferenceable as
u8
arrays (we recommend [u8; N]
for some N
). Read moresource§fn 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 moresource§fn from_entropy() -> Self
fn from_entropy() -> Self
impl Eq for Xoroshiro64StarStar
impl StructuralPartialEq for Xoroshiro64StarStar
Auto Trait Implementations§
impl Freeze for Xoroshiro64StarStar
impl RefUnwindSafe for Xoroshiro64StarStar
impl Send for Xoroshiro64StarStar
impl Sync for Xoroshiro64StarStar
impl Unpin for Xoroshiro64StarStar
impl UnwindSafe for Xoroshiro64StarStar
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)