Struct nix::pty::OpenptyResult [−][src]
Representation of a master/slave pty pair
This is returned by openpty. Note that this type does not implement Drop, so the user
must manually close the file descriptors.
Fields
master: RawFd
The master port in a virtual pty pair
slave: RawFd
The slave port in a virtual pty pair
Trait Implementations
impl Clone for OpenptyResult[src]
impl Clone for OpenptyResultfn clone(&self) -> OpenptyResult[src]
fn clone(&self) -> OpenptyResultReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for OpenptyResult[src]
impl Copy for OpenptyResultAuto Trait Implementations
impl Send for OpenptyResult
impl Send for OpenptyResultimpl Sync for OpenptyResult
impl Sync for OpenptyResult