File_system/Fundamentals/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
mod Entry;
mod Flags;
mod Identifiers;
mod Metadata;
mod Path;
mod Permission;
mod Position;
mod Size;
mod Statistics;
mod Type;

pub use Entry::*;
pub use Flags::*;
pub use Identifiers::*;
pub use Metadata::*;
pub use Path::*;
pub use Permission::*;
pub use Position::*;
pub use Size::*;
pub use Statistics::*;
pub use Type::*;

#[repr(transparent)]
pub struct Block_type(pub [u8; 512]);

impl Default for Block_type {
    fn default() -> Self {
        Block_type([0; 512])
    }
}