pub trait FromRawFilelike: FromRawHandle {
// Required method
unsafe fn from_raw_filelike(raw: RawFilelike) -> Self;
}
Expand description
This is a portability abstraction over Unix-like FromRawFd
and Windows’
FromRawHandle
.
Required Methods§
Sourceunsafe fn from_raw_filelike(raw: RawFilelike) -> Self
unsafe fn from_raw_filelike(raw: RawFilelike) -> Self
Constructs Self
from the raw value.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.