#[repr(transparent)]pub struct OwnedFd {
fd: NotAllOnes<RawFd>,
}Expand description
An owned file descriptor.
This closes the file descriptor on drop. It is guaranteed that nobody else will close the file descriptor.
This uses repr(transparent) and has the representation of a host file
descriptor, so it can be used in FFI in places where a file descriptor is
passed as a consumed argument or returned as an owned value, and it never
has the value -1.
You can use AsFd::as_fd to obtain a BorrowedFd.
Fields§
§fd: NotAllOnes<RawFd>Implementations§
Trait Implementations§
1.63.0 · Source§impl AsFd for OwnedFd
impl AsFd for OwnedFd
Source§fn as_fd(&self) -> BorrowedFd<'_>
fn as_fd(&self) -> BorrowedFd<'_>
1.63.0 · Source§impl From<ChildStderr> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<ChildStderr> for OwnedFd
Source§fn from(child_stderr: ChildStderr) -> OwnedFd
fn from(child_stderr: ChildStderr) -> OwnedFd
Takes ownership of a ChildStderr’s file descriptor.
1.63.0 · Source§impl From<ChildStdin> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<ChildStdin> for OwnedFd
Source§fn from(child_stdin: ChildStdin) -> OwnedFd
fn from(child_stdin: ChildStdin) -> OwnedFd
Takes ownership of a ChildStdin’s file descriptor.
1.63.0 · Source§impl From<ChildStdout> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<ChildStdout> for OwnedFd
Source§fn from(child_stdout: ChildStdout) -> OwnedFd
fn from(child_stdout: ChildStdout) -> OwnedFd
Takes ownership of a ChildStdout’s file descriptor.
1.74.0 · Source§impl From<OwnedFd> for ChildStderr
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.Creates a ChildStderr from the provided OwnedFd.
impl From<OwnedFd> for ChildStderr
Creates a ChildStderr from the provided OwnedFd.
The provided file descriptor must point to a pipe
with the CLOEXEC flag set.
1.74.0 · Source§impl From<OwnedFd> for ChildStdin
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.Creates a ChildStdin from the provided OwnedFd.
impl From<OwnedFd> for ChildStdin
Creates a ChildStdin from the provided OwnedFd.
The provided file descriptor must point to a pipe
with the CLOEXEC flag set.
1.74.0 · Source§impl From<OwnedFd> for ChildStdout
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.Creates a ChildStdout from the provided OwnedFd.
impl From<OwnedFd> for ChildStdout
Creates a ChildStdout from the provided OwnedFd.
The provided file descriptor must point to a pipe
with the CLOEXEC flag set.
Source§impl From<OwnedFd> for PidFd
Available on not ((WebAssembly and non-WASI, or Fortanix and SGX)) and (Linux) only.
impl From<OwnedFd> for PidFd
1.87.0 · Source§impl From<OwnedFd> for PipeReader
Available on non-Trusty only.
impl From<OwnedFd> for PipeReader
1.87.0 · Source§impl From<OwnedFd> for PipeWriter
Available on non-Trusty only.
impl From<OwnedFd> for PipeWriter
1.63.0 · Source§impl From<OwnedFd> for Stdio
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<OwnedFd> for Stdio
1.63.0 · Source§impl From<OwnedFd> for TcpListener
Available on non-Trusty only.
impl From<OwnedFd> for TcpListener
1.63.0 · Source§impl From<OwnedFd> for UnixDatagram
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<OwnedFd> for UnixDatagram
1.63.0 · Source§impl From<OwnedFd> for UnixListener
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<OwnedFd> for UnixListener
Source§fn from(fd: OwnedFd) -> UnixListener
fn from(fd: OwnedFd) -> UnixListener
1.63.0 · Source§impl From<OwnedFd> for UnixStream
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<OwnedFd> for UnixStream
Source§impl From<PidFd> for OwnedFd
Available on not ((WebAssembly and non-WASI, or Fortanix and SGX)) and (Linux) only.
impl From<PidFd> for OwnedFd
1.87.0 · Source§impl From<PipeReader> for OwnedFd
Available on non-Trusty only.
impl From<PipeReader> for OwnedFd
Source§fn from(pipe: PipeReader) -> Self
fn from(pipe: PipeReader) -> Self
1.87.0 · Source§impl From<PipeWriter> for OwnedFd
Available on non-Trusty only.
impl From<PipeWriter> for OwnedFd
Source§fn from(pipe: PipeWriter) -> Self
fn from(pipe: PipeWriter) -> Self
1.63.0 · Source§impl From<TcpListener> for OwnedFd
Available on non-Trusty only.
impl From<TcpListener> for OwnedFd
Source§fn from(tcp_listener: TcpListener) -> OwnedFd
fn from(tcp_listener: TcpListener) -> OwnedFd
Takes ownership of a TcpListener’s socket file descriptor.
1.63.0 · Source§impl From<UnixDatagram> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<UnixDatagram> for OwnedFd
Source§fn from(unix_datagram: UnixDatagram) -> OwnedFd
fn from(unix_datagram: UnixDatagram) -> OwnedFd
Takes ownership of a UnixDatagram’s socket file descriptor.
1.63.0 · Source§impl From<UnixListener> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<UnixListener> for OwnedFd
Source§fn from(listener: UnixListener) -> OwnedFd
fn from(listener: UnixListener) -> OwnedFd
Takes ownership of a UnixListener’s socket file descriptor.
1.63.0 · Source§impl From<UnixStream> for OwnedFd
Available on non-Hermit and (Unix) and not ((WebAssembly and non-WASI, or Fortanix and SGX)) only.
impl From<UnixStream> for OwnedFd
Source§fn from(unix_stream: UnixStream) -> OwnedFd
fn from(unix_stream: UnixStream) -> OwnedFd
Takes ownership of a UnixStream’s socket file descriptor.
1.63.0 · Source§impl IntoRawFd for OwnedFd
impl IntoRawFd for OwnedFd
Source§fn into_raw_fd(self) -> RawFd
fn into_raw_fd(self) -> RawFd
1.70.0 · Source§impl IsTerminal for OwnedFd
impl IsTerminal for OwnedFd
Source§fn is_terminal(&self) -> bool
fn is_terminal(&self) -> bool
true if the descriptor/handle refers to a terminal/tty. Read moreimpl Sealed for OwnedFd
Auto Trait Implementations§
impl Freeze for OwnedFd
impl RefUnwindSafe for OwnedFd
impl Send for OwnedFd
impl Sync for OwnedFd
impl Unpin for OwnedFd
impl UnsafeUnpin for OwnedFd
impl UnwindSafe for OwnedFd
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
ptr_alignment_type #102070)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
sized_type_properties)[Self]. Read more