From e6a3feb286ed68876a7c9fd9162266f741ca1a32 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Feb 2021 01:22:49 -0500 Subject: add async implementations of the pty itself --- src/error.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/error.rs') diff --git a/src/error.rs b/src/error.rs index 9b65d6a..7521544 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,5 +1,8 @@ #[derive(thiserror::Error, Debug)] pub enum Error { + #[error("error making pty async")] + AsyncPty(#[source] std::io::Error), + #[error("error creating pty")] CreatePty(#[source] nix::Error), -- cgit v1.2.3-54-g00ecf