pub struct RngSeed {
s: u32,
r: u32,
}
Expand description
A seed for random number generation.
In order to make certain functions within a runtime deterministic, a seed can be specified at the time of creation.
Fields§
§s: u32
§r: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RngSeed
impl RefUnwindSafe for RngSeed
impl Send for RngSeed
impl Sync for RngSeed
impl Unpin for RngSeed
impl UnwindSafe for RngSeed
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