#[repr(C)]pub struct THGenerator {
pub the_initial_seed: c_ulong,
pub left: c_int,
pub seeded: c_int,
pub next: c_ulong,
pub state: [c_ulong; 624],
pub normal_x: f64,
pub normal_y: f64,
pub normal_rho: f64,
pub normal_is_valid: c_int,
}Fields§
§the_initial_seed: c_ulong§left: c_int§seeded: c_int§next: c_ulong§state: [c_ulong; 624]§normal_x: f64§normal_y: f64§normal_rho: f64§normal_is_valid: c_intAuto Trait Implementations§
impl Freeze for THGenerator
impl RefUnwindSafe for THGenerator
impl Send for THGenerator
impl Sync for THGenerator
impl Unpin for THGenerator
impl UnwindSafe for THGenerator
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