uuid4

Function uuid4 

Source
pub fn uuid4(options: UuidV4Generator) -> ApiKeyResults
Examples found in repository?
examples/main.rs (lines 6-9)
5fn main() {
6  let api = api_key::uuid4(UuidV4Generator {
7    batch: 2,
8    ..UuidV4Generator::default()
9  });
10
11  assert!(match api {
12    ApiKeyResults::StringArray(d) => d.len() == 2,
13    _ => false,
14  })
15}