From a09b1c8ac643d448db479a108ac6726307075453 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Sat, 18 Sep 2021 21:07:00 -0600 Subject: Clippy cleanup And this time, start running Clippy in CI --- src/mount/bsd.rs | 2 +- src/mount/linux.rs | 1 + src/mount/mod.rs | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/mount') diff --git a/src/mount/bsd.rs b/src/mount/bsd.rs index 9913fc20..23331a0a 100644 --- a/src/mount/bsd.rs +++ b/src/mount/bsd.rs @@ -383,7 +383,7 @@ impl<'a> Nmount<'a> { Some(CStr::from_bytes_with_nul(sl).unwrap()) } }; - Err(NmountError::new(error.into(), errmsg)) + Err(NmountError::new(error, errmsg)) } } } diff --git a/src/mount/linux.rs b/src/mount/linux.rs index edb8afbd..4cb2fa54 100644 --- a/src/mount/linux.rs +++ b/src/mount/linux.rs @@ -1,3 +1,4 @@ +#![allow(missing_docs)] use libc::{self, c_ulong, c_int}; use crate::{Result, NixPath}; use crate::errno::Errno; diff --git a/src/mount/mod.rs b/src/mount/mod.rs index 00303b6a..14bf2a96 100644 --- a/src/mount/mod.rs +++ b/src/mount/mod.rs @@ -1,10 +1,8 @@ //! Mount file systems #[cfg(any(target_os = "android", target_os = "linux"))] -#[allow(missing_docs)] mod linux; #[cfg(any(target_os = "android", target_os = "linux"))] -#[allow(missing_docs)] pub use self::linux::*; #[cfg(any(target_os = "dragonfly", -- cgit v1.2.3