#[repr(C)]pub struct AVLFG {
pub state: [c_uint; 64],
pub index: c_int,
}展开描述
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 instantiation.
Fields§
§state: [c_uint; 64]§index: c_inttrait 实现§
impl Copy for AVLFG
impl Eq for AVLFG
impl StructuralPartialEq for AVLFG
自动 trait 实现§
impl Freeze for AVLFG
impl RefUnwindSafe for AVLFG
impl Send for AVLFG
impl Sync for AVLFG
impl Unpin for AVLFG
impl UnsafeUnpin for AVLFG
impl UnwindSafe for AVLFG
blanket 实现§
源代码§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
源代码§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值可变地借用。 阅读更多