pub struct Pcg<L, P, S, O> {
pub lcg: Lcg<L, S>,
pub permutation: PhantomData<(P, O)>,
}Fields§
§lcg: Lcg<L, S>§permutation: PhantomData<(P, O)>Implementations§
Trait Implementations§
impl<L: Eq, P: Eq, S: Eq, O: Eq> Eq for Pcg<L, P, S, O>
impl<L, P, S, O> StructuralPartialEq for Pcg<L, P, S, O>
Auto Trait Implementations§
impl<L, P, S, O> Freeze for Pcg<L, P, S, O>
impl<L, P, S, O> RefUnwindSafe for Pcg<L, P, S, O>
impl<L, P, S, O> Send for Pcg<L, P, S, O>
impl<L, P, S, O> Sync for Pcg<L, P, S, O>
impl<L, P, S, O> Unpin for Pcg<L, P, S, O>
impl<L, P, S, O> UnwindSafe for Pcg<L, P, S, O>
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