Function chewdata::updater::tera_helpers::function::faker::country_name

source ·
pub fn country_name(_args: &HashMap<String, Value>) -> Result<Value>
Expand description

Generate country name

§Examples

use std::collections::HashMap;
use chewdata::updater::tera_helpers::function::faker::country_name;

let args = HashMap::new();
let country_name = country_name(&args);
assert!(country_name.is_ok());