You can create a secure password with numbers in Rust by using the rand crate to generate random numbers and selecting a subset of those numbers as the password. Here is an example function that generates a random password consisting of 10 digits:
main.rs301 chars11 linesThis code first creates a random number generator using thread_rng from the rand crate. It then generates 10 random digits, converts each digit to a char, and collects them into a String to create the password. You can customize the length of the password and the character set to use by adjusting the parameters passed to gen_range and from_digit.
gistlibby LogSnag