Home
last modified time | relevance | path

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

/external/rust/crates/nix/src/
Dpty.rs51 pub struct PtyMaster(OwnedFd); struct
53 impl AsRawFd for PtyMaster { implementation
59 impl IntoRawFd for PtyMaster { implementation
66 impl io::Read for PtyMaster { implementation
72 impl io::Write for PtyMaster { implementation
81 impl io::Read for &PtyMaster { implementation
87 impl io::Write for &PtyMaster { implementation
144 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt()