pub trait AsRawDescriptor {
    // Required method
    fn as_raw_descriptor(&self) -> RawDescriptor;
}
Expand description

Trait for returning the underlying raw descriptor, without giving up ownership of the descriptor.

Required Methods§

source

fn as_raw_descriptor(&self) -> RawDescriptor

Returns the underlying raw descriptor.

Since the descriptor is still owned by the provider, callers should not assume that it will remain open for longer than the immediate call of this method. In particular, it is a dangerous practice to store the result of this method for future use: instead, it should be used to e.g. obtain a raw descriptor that is immediately passed to a system call.

If you need to use the descriptor for a longer time (and particularly if you cannot reliably track the lifetime of the providing object), you should probably consider using SafeDescriptor (possibly along with IntoRawDescriptor) to get full ownership over a descriptor pointing to the same resource.

Trait Implementations§

source§

impl TryFrom<&dyn AsRawDescriptor> for SafeDescriptor

source§

fn try_from(rd: &dyn AsRawDescriptor) -> Result<Self, Self::Error>

Clones the underlying descriptor (handle), internally creating a new descriptor.

WARNING: Windows does NOT support cloning/duplicating all types of handles. DO NOT use this function on IO completion ports, sockets, or pseudo-handles (except those from GetCurrentProcess or GetCurrentThread). See https://docs.microsoft.com/en-us/windows/win32/api/handleapi/nf-handleapi-duplicatehandle for further details.

TODO(b/191800567): this API has sharp edges on Windows. We should evaluate making some adjustments to smooth those edges.

§

type Error = Error

The type returned in the event of a conversion error.

Implementations on Foreign Types§

source§

impl AsRawDescriptor for TcpListener

source§

impl AsRawDescriptor for Stdin

source§

impl AsRawDescriptor for Stdout

source§

impl AsRawDescriptor for File

source§

impl AsRawDescriptor for TcpStream

source§

impl AsRawDescriptor for OwnedFd

source§

impl AsRawDescriptor for UnixStream

source§

impl AsRawDescriptor for UnixDatagram

source§

impl<T> AsRawDescriptor for Arc<T>where T: AsRawDescriptor,

source§

impl AsRawDescriptor for UdpSocket

source§

impl AsRawDescriptor for Stderr

source§

impl AsRawDescriptor for UnixListener

Implementors§