Struct gmp_mpfr_sys::gmp::randseed_t [−][src]
#[repr(C)]pub struct randseed_t {
pub alloc: MaybeUninit<c_int>,
pub size: MaybeUninit<c_int>,
pub d: NonNull<c_void>,
}
Expand description
The type for the seed
field in the randstate_t
struct.
Future compatibility
This type is considered internal details. These internals may
change in new minor releases of this crate, though they will be
kept unchanged for patch releases. Any code that makes use of
these internals should list the dependency as version = "~1.4"
inside Cargo.toml, not version = "1.4"
.
Fields
alloc: MaybeUninit<c_int>
Internal implementation detail: unused.
size: MaybeUninit<c_int>
Internal implementation detail: unused.
d: NonNull<c_void>
Internal implementation detail: state of the generator.