pub trait RNGTraitConst {
    // Required method
    fn as_raw_RNG(&self) -> *const c_void;

    // Provided methods
    fn state(&self) -> u64 { ... }
    fn equals(&self, other: &RNG) -> Result<bool> { ... }
}
Expand description

Constant methods for core::RNG

Required Methods§

Provided Methods§

source

fn state(&self) -> u64

source

fn equals(&self, other: &RNG) -> Result<bool>

Implementors§