From 09ff545fe44242734d5f6daf4a74946d2f04728d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 30 Dec 2021 23:14:55 -0500 Subject: docs --- src/blocking/pty.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/blocking/pty.rs') diff --git a/src/blocking/pty.rs b/src/blocking/pty.rs index d864bd6..6fa3382 100644 --- a/src/blocking/pty.rs +++ b/src/blocking/pty.rs @@ -1,9 +1,14 @@ +/// An allocated pty pub struct Pty { pt: std::fs::File, pts: std::fs::File, } impl Pty { + /// Allocate and return a new pty. + /// + /// # Errors + /// Returns an error if the pty failed to be allocated. pub fn new() -> crate::Result { let (pt, ptsname) = crate::sys::create_pt()?; let pts = std::fs::OpenOptions::new() @@ -13,6 +18,10 @@ impl Pty { Ok(Self { pt, pts }) } + /// Change the terminal size associated with the pty. + /// + /// # Errors + /// Returns an error if we were unable to set the terminal size. pub fn resize(&self, size: crate::Size) -> crate::Result<()> { Ok(crate::sys::set_term_size(self, size)?) } -- cgit v1.2.3-54-g00ecf