aboutsummaryrefslogtreecommitdiffstats
path: root/src/command
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-14 17:30:42 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-14 17:30:42 -0500
commit826f85eeed936137a0535a217df03e0fa7bc84f7 (patch)
treea042184c56b12b1010ef3263f5a7255bec032d67 /src/command
parent491ad3de31067cc8cafc540cea2c8891f2985815 (diff)
downloadpty-process-826f85eeed936137a0535a217df03e0fa7bc84f7.tar.gz
pty-process-826f85eeed936137a0535a217df03e0fa7bc84f7.zip
clippy
Diffstat (limited to 'src/command')
-rw-r--r--src/command/async_process.rs2
-rw-r--r--src/command/std.rs2
-rw-r--r--src/command/tokio.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/command/async_process.rs b/src/command/async_process.rs
index 4248402..4a1d042 100644
--- a/src/command/async_process.rs
+++ b/src/command/async_process.rs
@@ -1,7 +1,7 @@
use async_process::unix::CommandExt as _;
use std::os::unix::io::FromRawFd as _;
-impl super::CommandImpl for async_process::Command {
+impl super::Impl for async_process::Command {
type Child = async_process::Child;
type Pty = crate::pty::async_io::Pty;
diff --git a/src/command/std.rs b/src/command/std.rs
index f1c5418..5c08808 100644
--- a/src/command/std.rs
+++ b/src/command/std.rs
@@ -1,7 +1,7 @@
use std::os::unix::io::FromRawFd as _;
use std::os::unix::process::CommandExt as _;
-impl super::CommandImpl for std::process::Command {
+impl super::Impl for std::process::Command {
type Child = std::process::Child;
type Pty = crate::pty::std::Pty;
diff --git a/src/command/tokio.rs b/src/command/tokio.rs
index 67baf74..58d2c26 100644
--- a/src/command/tokio.rs
+++ b/src/command/tokio.rs
@@ -1,6 +1,6 @@
use std::os::unix::io::FromRawFd as _;
-impl super::CommandImpl for tokio::process::Command {
+impl super::Impl for tokio::process::Command {
type Child = tokio::process::Child;
type Pty = crate::pty::tokio::Pty;