pub trait IntoRawFilelike: IntoRawFd {
// Required method
fn into_raw_filelike(self) -> RawFilelike;
}Expand description
This is a portability abstraction over Unix-like IntoRawFd and Windows’
IntoRawHandle.
Required Methods§
Sourcefn into_raw_filelike(self) -> RawFilelike
fn into_raw_filelike(self) -> RawFilelike
Returns the raw value.
Implementors§
impl<T: IntoRawFd> IntoRawFilelike for T
Available on Unix or WASI or HermitCore only.