pub enum Max {
Float(f64),
Integer(i64),
None,
}
Expand description
Max value when generating a random number from a range.
In Ruby, the rand
family of functions generate random numbers form within
a range. This range is always anchored on the left by zero. The Max
enum
allows callers to specify the upper bound of the range. If the None
variant is given, the default is set to generate floats in the range of
[0.0, 1.0)
.
Variants§
Float(f64)
Generate floats in the range [0, max)
.
If max
is less than or equal to zero, the range defaults to floats
in [0.0, 1.0]
.
If max
is NaN
, an error is returned.
Integer(i64)
Generate signed integers in the range [0, max)
.
If max
is less than or equal to zero, the range defaults to floats
in [0.0, 1.0]
.
None
Generate floats in the range [0.0, 1.0]
.
Trait Implementations§
Source§impl PartialOrd for Max
impl PartialOrd for Max
impl Copy for Max
impl StructuralPartialEq for Max
Auto Trait Implementations§
impl Freeze for Max
impl RefUnwindSafe for Max
impl Send for Max
impl Sync for Max
impl Unpin for Max
impl UnwindSafe for Max
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