pub trait AsRawFilelike: AsRawHandle {
    fn as_raw_filelike(&self) -> RawFilelike;
}
Expand description

This is a portability abstraction over Unix-like [AsRawFd] and Windows’ AsRawHandle.

Required methods

Returns the raw value.

Implementors