fmt: rustfmt reorder of cfg-gated use/mod decls in sink + fs_type

This commit is contained in:
MattJackson
2026-05-13 20:10:57 -07:00
parent 637c2bfe36
commit 1a2c830cf6
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -37,19 +37,19 @@ pub enum FsType {
mod linux;
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "windows")]
mod windows;
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
mod other;
#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "linux")]
use linux::detect_impl;
#[cfg(target_os = "macos")]
use macos::detect_impl;
#[cfg(target_os = "windows")]
use windows::detect_impl;
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
use other::detect_impl;
#[cfg(target_os = "windows")]
use windows::detect_impl;
/// Best-effort classification of the filesystem under `path`.
///