pub trait FakerProvider {
// Provided methods
fn uuid(&self) -> String { ... }
fn email(&self) -> String { ... }
fn name(&self) -> String { ... }
fn address(&self) -> String { ... }
fn phone(&self) -> String { ... }
fn company(&self) -> String { ... }
fn url(&self) -> String { ... }
fn ip(&self) -> String { ... }
fn color(&self) -> String { ... }
fn word(&self) -> String { ... }
fn sentence(&self) -> String { ... }
fn paragraph(&self) -> String { ... }
}