file_system/fundamentals/identifiers/
mod.rs

1//! Identifier types for file system objects and operations.
2//!
3//! This module provides various identifier types used throughout the file system
4//! to uniquely identify files, directories, file systems, inodes, and other objects.
5//! These identifiers ensure type safety and provide a consistent way to reference
6//! file system entities across different operations.
7
8mod entry;
9
10pub use entry::*;
11
12pub type Inode = u64;