W3cubDocs

/Rust

Trait std::os::unix::io::AsRawFd

pub trait AsRawFd {
    fn as_raw_fd(&self) -> RawFd;
}
This is supported on Unix only.

A trait to extract the raw unix file descriptor from an underlying object.

This is only available on unix platforms and must be imported in order to call the method. Windows platforms have a corresponding AsRawHandle and AsRawSocket set of traits.

Required methods

fn as_raw_fd(&self) -> RawFd

This is supported on Unix only.

Extracts the raw file descriptor.

This method does not pass ownership of the raw file descriptor to the caller. The descriptor is only guaranteed to be valid while the original object has not yet been destroyed.

Loading content...

Implementors

impl AsRawFd for File[src]

impl AsRawFd for Stderr[src]

impl AsRawFd for Stdin[src]

impl AsRawFd for Stdout[src]

impl AsRawFd for TcpListener[src]

impl AsRawFd for TcpStream[src]

impl AsRawFd for UdpSocket[src]

impl AsRawFd for UnixDatagram[src]

impl AsRawFd for UnixListener[src]

impl AsRawFd for UnixStream[src]

impl AsRawFd for ChildStderr[src]

impl AsRawFd for ChildStdin[src]

impl AsRawFd for ChildStdout[src]

impl<'a> AsRawFd for StderrLock<'a>[src]

impl<'a> AsRawFd for StdinLock<'a>[src]

impl<'a> AsRawFd for StdoutLock<'a>[src]

Loading content...

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/io/trait.AsRawFd.html