1//! This file contains common type traits and aliases used within structures. 2 3use crate::constants::UUID_SIZE; 4 5/// An inline array of bytes representing a UUID within the filesystem. 6pub type UuidBytes = [u8; UUID_SIZE];