Struct mini_functions::random::Random
source · #[non_exhaustive]pub struct Random { /* private fields */ }Expand description
A random number generator based on the linear congruential generator algorithm with the golden ratio as the multiplier.
Implementations§
Trait Implementations§
source§impl PartialEq<Random> for Random
impl PartialEq<Random> for Random
source§impl PartialOrd<Random> for Random
impl PartialOrd<Random> for Random
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Random
impl StructuralPartialEq for Random
Auto Trait Implementations§
impl RefUnwindSafe for Random
impl Send for Random
impl Sync for Random
impl Unpin for Random
impl UnwindSafe for Random
Blanket Implementations§
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().