Home
last modified time | relevance | path

Searched defs:PtyMaster (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/nix/src/
Dpty.rs50 pub struct PtyMaster(RawFd); struct
52 impl AsRawFd for PtyMaster { implementation
58 impl IntoRawFd for PtyMaster { implementation
66 impl Drop for PtyMaster { implementation
82 impl io::Read for PtyMaster { implementation
88 impl io::Write for PtyMaster { implementation
97 impl io::Read for &PtyMaster { implementation
103 impl io::Write for &PtyMaster { implementation
160 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt()