pub trait IntoRawFileDescriptor {
// Required method
fn into_raw_file_descriptor(self) -> RawFileDescriptor;
}Expand description
IntoRawFileDescriptor is a platform independent trait for converting
an instance into the underlying platform file descriptor type.