listdisk_rs/lib.rs
1//! Before using listdisk-rs, you could read these resources:
2//!
3//! - [Namespace root/cimv2](https://powershell.one/wmi/root/cimv2)
4//! - [An In-Depth Guide to Windows File Paths](https://chrisdenton.github.io/omnipath/Overview.html)
5//! - [Storage Management API Classes](https://learn.microsoft.com/en-us/windows-hardware/drivers/storage/storage-management-api-classes)
6#![cfg_attr(docsrs, feature(doc_cfg))]
7
8/// Everything related to Disk/Partition/FileSystem
9#[cfg(target_os = "windows")]
10pub mod win32;
11
12#[cfg(feature = "serde")]
13pub use serde;
14#[cfg(feature = "encoding")]
15pub use utf16string;
16#[cfg(feature = "win32_sys")]
17pub use windows_sys;
18#[cfg(feature = "wmi")]
19pub use wmi;