rename tools::raw to tools::fd

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-08-05 12:36:24 +02:00
parent 3497f97a7d
commit 97f41473db
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
//! Raw file descriptor related structures.
use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
/// Guard a raw file descriptor with a drop handler. This is mostly useful when access to an owned

View File

@ -5,8 +5,8 @@ use lazy_static::lazy_static;
pub mod common_regex;
pub mod io;
pub mod fd;
pub mod fs;
pub mod raw;
pub mod serde;
pub mod vec;