Generates a directory with random names and telephone numbers.
use randir::utils::generate_entries; fn main() { // generate 100 random names and telephone numbers let directory = generate_entries(100); for entry in directory { println!("{}", entry) } }
The result type of the generate_entries() function is a Vec<Entry>. Entry is defined as:
pub struct Entry { pub uid: usize, pub first_name: String, pub last_name: String, pub phone_nr: String, }
To use the random directory generator, you need to include it in the Cargo.toml file of your Rust project:
[dependencies]
randir = "0.1.2"