random_user
This library provides a convenient random user generator using the api from https://randomuser.me Built with reqwest and using async.
Examples
Generate one random user:
use UserGenerator;
async
Generate multiple random users with filters:
let generator = new;
// Get 5 Australian women with complex passwords
let users = generator
.get
.gender
.nationality
.password
.fetch
.await?
for user in users