[][src]Trait timeout_io::RawFd

pub trait RawFd {
    fn raw_fd(&self) -> u64;
}

A wrapper-trait that unifies the std::os::unix::io::AsRawFd and std::os::windows::io::AsRawSocket traits

Required methods

fn raw_fd(&self) -> u64

The underlying raw file descriptor

Loading content...

Implementors

impl<T> RawFd for T where
    T: AsRawFd
[src]

Loading content...