btrfs-no-std 0.2.1

Fork of Christopher Tam's `btrfs-diskformat` with `#![no_std]` support
Documentation
1
2
3
4
5
6
//! This file contains common type traits and aliases used within structures.

use crate::constants::UUID_SIZE;

/// An inline array of bytes representing a UUID within the filesystem.
pub type UuidBytes = [u8; UUID_SIZE];