To generate characters, you can utilize the thread-local random number generator function, random.
fn main() {
let tuple = rand::random::<(f64, char)>();
println!("{:?}", tuple)
}
For occasional or singular requests, such as the one above, this is a reasonable efficien...