Expand description
SIMD-accelerated UUID operations.
Examples
use uuid::Uuid;
use uuid_simd::UuidExt;
let text = "67e55044-10b1-426f-9247-bb680e5fe0c8";
let uuid: Uuid = Uuid::parse(text.as_bytes()).unwrap();
println!("{}", uuid.format_simple())Modules
Structs
Enums
Traits
An extension trait for uuid::Uuid
Functions
Formats src to a fixed length hex string.
Formats src to a fixed length hex string.
Parses an UUID from arbitrary bytes.
Parses a hyphenated UUID from arbitrary bytes.
Parses a simple UUID from arbitrary bytes.