pub struct Pcg32 {
pub state: u64,
pub inc: u64,
}Expand description
PCG32 — Permuted Congruential Generator.
Fields§
§state: u64§inc: u64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pcg32
impl RefUnwindSafe for Pcg32
impl Send for Pcg32
impl Sync for Pcg32
impl Unpin for Pcg32
impl UnsafeUnpin for Pcg32
impl UnwindSafe for Pcg32
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