Struct AVLFG
#[repr(C)]pub struct AVLFG {
pub state: [u32; 64],
pub index: i32,
}
Expand description
Context structure for the Lagged Fibonacci PRNG.
The exact layout, types and content of this struct may change and should
not be accessed directly. Only its sizeof()
is guaranteed to stay the same
to allow easy instanciation.
Fields§
§state: [u32; 64]
§index: i32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AVLFG
impl RefUnwindSafe for AVLFG
impl Send for AVLFG
impl Sync for AVLFG
impl Unpin for AVLFG
impl UnwindSafe for AVLFG
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