Home
last modified time | relevance | path

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

/external/rust/crates/nix/src/
Dpty.rs47 pub struct PtyMaster(RawFd); struct
49 impl AsRawFd for PtyMaster { implementation
55 impl IntoRawFd for PtyMaster { implementation
63 impl Drop for PtyMaster { implementation
79 impl io::Read for PtyMaster { implementation
85 impl io::Write for PtyMaster { implementation
142 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt()