pub trait RngBits: Rng {
// Provided method
fn gen_bits<T>(&mut self, bits: u8) -> T
where Standard: Distribution<T> { ... }
}
Expand description
Provided Methods§
sourcefn gen_bits<T>(&mut self, bits: u8) -> Twhere
Standard: Distribution<T>,
fn gen_bits<T>(&mut self, bits: u8) -> Twhere
Standard: Distribution<T>,
Object Safety§
This trait is not object safe.