polling

Trait Source

Source
pub trait Source {
    // Required method
    fn raw(&self) -> RawFd;
}
Expand description

A RawFd or a reference to a type implementing AsRawFd.

Required Methods§

Source

fn raw(&self) -> RawFd

Returns the RawFd for this I/O object.

Implementations on Foreign Types§

Source§

impl Source for RawFd

Source§

fn raw(&self) -> RawFd

Source§

impl<T: AsRawFd> Source for &T

Source§

fn raw(&self) -> RawFd

Implementors§