[][src]Type Definition type_uuid::Bytes

type Bytes = [u8; 16];

A 128-bit (16 byte) buffer containing the ID.

This is meant to match the Bytes type defined in the uuid crate. Logically it's meant to be equivalent to using a u128 to represent the UUID's numeric value, but specifying it as a byte array allows us to avoid endianness issues.