summaryrefslogtreecommitdiff
path: root/src/sys/termios.rs
diff options
context:
space:
mode:
authorBryant Mairs <bryantmairs@google.com>2018-01-14 10:44:16 -0800
committerBryant Mairs <bryantmairs@google.com>2018-01-28 17:39:12 -0800
commit4ea63e1544f17afc1a54f805625091be8dcd8227 (patch)
tree058f44908eecbef378851114338a7b28c65a5c59 /src/sys/termios.rs
parent58bd6bf34c576e9743638edf448c9491f9428ef8 (diff)
downloadnix-4ea63e1544f17afc1a54f805625091be8dcd8227.zip
Require Debug impls for all types
Diffstat (limited to 'src/sys/termios.rs')
-rw-r--r--src/sys/termios.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/termios.rs b/src/sys/termios.rs
index ec5e302b..5b4cecdc 100644
--- a/src/sys/termios.rs
+++ b/src/sys/termios.rs
@@ -177,6 +177,7 @@ use ::unistd::Pid;
/// standard fields. The only safe way to obtain an instance of this struct is to extract it from
/// an open port using `tcgetattr()`.
#[derive(Clone)]
+#[allow(missing_debug_implementations)]
pub struct Termios {
inner: RefCell<libc::termios>,
/// Input mode flags (see `termios.c_iflag` documentation)