rust-faker
```rust extern crate rust_faker;
use rustfaker::{createnames};
fn main() { println!("{:?}", createnames("Adiatma", "Kamarudin", 2).unwrap()); // [Name{ firstname: "Adiatma", lastname: "Kamarudin" }, Name{ firstname: "Adiatma", last_name: "Kamarudin" }] } ```
create_names
to create collections of names with params first_name
, last_name
, and loop_by
.
create_name
to create a single name with params first_name
, last_name
.
create_emails
to create collections of emails with params email
, and loop_by
.
create_email
to create a single email with param email
.
create_text
to create collections of text with params title
, description
and loop_by
.MIT