Trait polling::Source[][src]

pub trait Source {
    fn raw(&self) -> RawFd;
}
[]

A RawFd or a reference to a type implementing AsRawFd.

Required methods

fn raw(&self) -> RawFd[src][]

Returns the RawFd for this I/O object.

Implementations on Foreign Types

impl Source for RawFd[src]

impl<T: AsRawFd> Source for &T[src]

Implementors