pub trait FromRawFilelike: FromRawHandle {
    unsafe fn from_raw_filelike(raw: RawFilelike) -> Self;
}
Expand description

This is a portability abstraction over Unix-like [FromRawFd] and Windows’ FromRawHandle.

Required methods

Constructs Self from the raw value.

Implementors