From cc06e4fc8557f9c277c3875ca550ea2d567e8599 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 24 Feb 2021 04:40:02 -0500 Subject: make the tokio pty backend actually work properly --- src/pty.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/pty.rs') diff --git a/src/pty.rs b/src/pty.rs index 07d6b2c..986b216 100644 --- a/src/pty.rs +++ b/src/pty.rs @@ -16,6 +16,7 @@ pub trait Pty { where Self: Sized; fn pt(&self) -> &Self::Pt; + fn pt_mut(&mut self) -> &mut Self::Pt; fn pts(&self) -> Result<::std::fs::File>; fn resize(&self, size: &super::Size) -> Result<()>; } -- cgit v1.2.3-54-g00ecf