pub struct Rand {
pub xoshiro: [u64; 4],
pub seed64: u64,
pub count: u8,
}Expand description
PRNG state - xoshiro256** compatible with Go
Fields§
§xoshiro: [u64; 4]§seed64: u64§count: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rand
impl RefUnwindSafe for Rand
impl Send for Rand
impl Sync for Rand
impl Unpin for Rand
impl UnwindSafe for Rand
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