From 4ea63e1544f17afc1a54f805625091be8dcd8227 Mon Sep 17 00:00:00 2001 From: Bryant Mairs Date: Sun, 14 Jan 2018 10:44:16 -0800 Subject: Require Debug impls for all types --- src/fcntl.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/fcntl.rs') diff --git a/src/fcntl.rs b/src/fcntl.rs index e5263627..58de3b31 100644 --- a/src/fcntl.rs +++ b/src/fcntl.rs @@ -205,6 +205,7 @@ libc_bitflags!( } ); +#[allow(missing_debug_implementations)] pub enum FcntlArg<'a> { F_DUPFD(RawFd), F_DUPFD_CLOEXEC(RawFd), @@ -268,6 +269,7 @@ pub fn fcntl(fd: RawFd, arg: FcntlArg) -> Result { } #[derive(Clone, Copy)] +#[allow(missing_debug_implementations)] pub enum FlockArg { LockShared, LockExclusive, -- cgit v1.2.3