pub trait AsRawFileDescriptor {
    fn as_raw_file_descriptor(&self) -> RawFileDescriptor;
}
Expand description

AsRawFileDescriptor is a platform independent trait for returning a non-owning reference to the underlying platform file descriptor type.

Required methods

Implementors