1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate bitflags;
extern crate cfg_if;
extern crate nix;

use nix::errno::Errno;

#[macro_use]
mod macros;

pub mod fs;
mod operations;

pub use crate::fs::Filesystem;
pub use crate::operations::{mount, Error};

pub type Result<T> = std::result::Result<T, Errno>;