Library that allows to generate unique Ids. The utility caches the ids and when the cache reaches a lower limit then a fill thread is enabled. If the cache is empty (the number of requests is too fast) an id is calculated on the fly. This will slow down obtaining the id but there is no error if the cache is empty. To generate unique ids the library uses a random number generator and a SHA256 hash for the id as String type. For type u128 it's the value of the random number generator used as id
``` extern crate idsservice; use idsservice::ids::*;
let mut z: IdsService
// Use iterator for z in z.iter() { println!("Read id: {}",z); } ```