1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//////////////////// UNIX

#[cfg(unix)]
pub mod permissions_unix;

#[cfg(unix)]
pub fn supported() -> bool {
    true
}

#[cfg(unix)]
pub use permissions_unix::*;

//////////////////// WINDOWS

#[cfg(windows)]
pub fn supported() -> bool {
    false
}