use std::error::Error; use uuid::Uuid; fn main() -> Result<(), Box> { let id = Uuid::new_v4(); println!("{}", id); Ok(()) }