pub trait AsRaw: Sealed {
    fn as_raw(&self) -> RawFd;
}
Expand description

An object that the fionread function can be called on.

Implemented for all AsRawFd on Unix and AsRawSocket on Windows.

Required Methods

Returns the raw file descriptor or socket.

Implementors