use Uuid;
/// Generates a UUID without hyphens.
///
/// # Examples
///
/// ```
/// let uuid = generate_uuid_without_hyphens();
/// println!("UUID without hyphens: {}", uuid);
/// ```
///
/// # Returns
///
/// A `String` representation of the generated UUID without hyphens.