aboutsummaryrefslogtreecommitdiffstats
path: root/src/sys/mod.rs
blob: a63f171c09e7086972f27586c67f6ed8a480f958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#[cfg(unix)]
mod unix;
#[cfg(unix)]
pub use self::unix::*;

pub enum PathWritability {
    Writable,
    NotWritable,
    NotExist,
}