windows-drives 0.5.0

Safe Win32 API wrappers for access to raw binary data on physical drives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*!

This crate provides safe wrappers around the unsafe Win32 API provided by `winapi` for raw disk access.

Currently accessing complete disks (`\\.\PhysicalDriveX`) and disk partitions (`\\?\HarddiskVolumeX`) is supported.

A good program to view your computer's disk mapping is [SIV](http://rh-software.com/) (under "Volumes -> Disk Mapping").
*/

#[macro_use]
pub(crate) mod macros;

/// The core module of the crate, providing the data structures representing physical drives.
pub mod drive;

/// A module providing helper functions to interact with the Win32 API.
pub mod win32;

pub use drive::*;