1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! This crate provides safe wrappers around the unsafe Win32 API provided by `winapi` for interacting
//! with physical drives, i. e. access to the raw binary data on the disk.

/// 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::*;