pub trait MmapAsRawDesc {
// Required method
fn as_raw_desc(&self) -> MmapRawDescriptor;
}Required Methods§
fn as_raw_desc(&self) -> MmapRawDescriptor
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl MmapAsRawDesc for RawFd
Available on Unix only.
impl MmapAsRawDesc for RawFd
Available on Unix only.
fn as_raw_desc(&self) -> MmapRawDescriptor
Source§impl<T> MmapAsRawDesc for &Twhere
T: AsRawFd,
Available on Unix only.
impl<T> MmapAsRawDesc for &Twhere
T: AsRawFd,
Available on Unix only.