// SPDX-License-Identifier: MIT
//! Iterator usage with `crypto_hash`.
useids_service::common::*;useids_service::crypto_hash::*;fnmain(){letmut ids =IdsService::default();
ids.start();let_= ids.filled_at_percent_event(5).recv();for id in ids.take(10){println!("{}", id.as_json());}}