Trait otter_api_tests::unix::io::FromRawFd 1.1.0[−][src]
pub trait FromRawFd { pub unsafe fn from_raw_fd(fd: i32) -> Self; }
This is supported on Unix only.
A trait to express the ability to construct an object from a raw file descriptor.
Required methods
pub unsafe fn from_raw_fd(fd: i32) -> Self
[src]
Constructs a new instance of Self
from the given raw file
descriptor.
This function consumes ownership of the specified file descriptor. The returned object will take responsibility for closing it when the object goes out of scope.
This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.
Example
use std::fs::File; use std::os::unix::io::{FromRawFd, IntoRawFd, RawFd}; let f = File::open("foo.txt")?; let raw_fd: RawFd = f.into_raw_fd(); // SAFETY: no other functions should call `from_raw_fd`, so there // is only one owner for the file descriptor. let f = unsafe { File::from_raw_fd(raw_fd) };
Implementations on Foreign Types
impl FromRawFd for UdpSocket
[src]
pub unsafe fn from_raw_fd(fd: i32) -> UdpSocket
[src]
impl FromRawFd for TcpStream
[src]
pub unsafe fn from_raw_fd(fd: i32) -> TcpStreamⓘ
[src]
impl FromRawFd for i32
[src]
pub unsafe fn from_raw_fd(fd: i32) -> i32
[src]
impl FromRawFd for TcpListener
[src]
pub unsafe fn from_raw_fd(fd: i32) -> TcpListener
[src]
impl FromRawFd for TcpStream
[src]
pub unsafe fn from_raw_fd(fd: i32) -> TcpStreamⓘ
[src]
impl FromRawFd for TcpListener
[src]
pub unsafe fn from_raw_fd(fd: i32) -> TcpListener
[src]
impl FromRawFd for UdpSocket
[src]
pub unsafe fn from_raw_fd(fd: i32) -> UdpSocket
[src]
impl FromRawFd for TcpBuilder
[src]
pub unsafe fn from_raw_fd(fd: i32) -> TcpBuilder
[src]
impl FromRawFd for UdpBuilder
[src]
pub unsafe fn from_raw_fd(fd: i32) -> UdpBuilder
[src]
impl FromRawFd for Inotify
pub unsafe fn from_raw_fd(fd: i32) -> Inotify
Implementors
impl FromRawFd for otter_api_tests::imports::nix::sys::inotify::Inotify
pub unsafe fn from_raw_fd(fd: i32) -> Inotify
impl FromRawFd for TimerFd
pub unsafe fn from_raw_fd(fd: i32) -> TimerFd
impl FromRawFd for NonblockingUnixSeqpacketConn
pub unsafe fn from_raw_fd(fd: i32) -> NonblockingUnixSeqpacketConn
impl FromRawFd for NonblockingUnixSeqpacketListener
pub unsafe fn from_raw_fd(fd: i32) -> NonblockingUnixSeqpacketListener
impl FromRawFd for UnixSeqpacketConn
pub unsafe fn from_raw_fd(fd: i32) -> UnixSeqpacketConn
impl FromRawFd for UnixSeqpacketListener
pub unsafe fn from_raw_fd(fd: i32) -> UnixSeqpacketListener
impl FromRawFd for File
[src]
pub unsafe fn from_raw_fd(fd: i32) -> Fileⓘ
[src]
impl FromRawFd for Stdio
1.2.0[src]
pub unsafe fn from_raw_fd(fd: i32) -> Stdio
[src]
impl FromRawFd for UnixStream
1.10.0[src]
pub unsafe fn from_raw_fd(fd: i32) -> UnixStreamⓘNotable traits for &'a UnixStream
impl<'a> Read for &'a UnixStreamimpl Read for UnixStreamimpl<'a> Write for &'a UnixStreamimpl Write for UnixStream
[src]
Notable traits for &'a UnixStream
impl<'a> Read for &'a UnixStreamimpl Read for UnixStreamimpl<'a> Write for &'a UnixStreamimpl Write for UnixStream