disket 0.1.0

Cross-platform abstractions for disks/volumes management
Documentation
1
2
3
4
5
6
7
8
9
10
//! Platform-specific extensions for [`crate::mount`]

#[cfg(any(target_os = "linux", target_os = "android"))]
pub mod linux;

#[cfg(target_vendor = "apple")]
pub mod apple;

#[cfg(target_os = "freebsd")]
pub mod freebsd;