pub fn create_id() -> Result<u64, Error>
Expand description

Function to create an id without the service and caching

Examples found in repository?
examples/quickstart2_rh.rs (line 24)
22
23
24
25
26
27
fn main() {

    println!("Create an id without the service: {}", create_id().unwrap());
    println!("Create an id without the service: {}", create_id().unwrap());

}