ax-runtime 0.6.0

Runtime library of ArceOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod error;
mod gpt;
mod mbr;
mod reader;
mod scan;
#[cfg(test)]
mod tests;
mod types;

pub use error::{Error, Result};
pub use reader::BlockReader;
pub use scan::scan_volumes;
pub use types::{
    BlockRegion, BlockVolume, DiskId, PartitionId, PartitionLabel, PartitionTableKind,
    PartitionUuid,
};