Skip to main content

OwnedFd

Struct OwnedFd 

1.66.0 ยท Source
pub struct OwnedFd { /* private fields */ }
Available on Hermit or Motor OS or Trusty or Unix or WASI only.
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.

Implementationsยง

Sourceยง

impl OwnedFd

1.63.0 ยท Source

pub fn try_clone(&self) -> Result<Self>

Creates a new OwnedFd instance that shares the same underlying file description as the existing OwnedFd instance.

Trait Implementationsยง

1.63.0 ยท Sourceยง

impl AsFd for OwnedFd

Sourceยง

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor. Read more
1.63.0 ยท Sourceยง

impl AsRawFd for OwnedFd

Sourceยง

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
1.63.0 ยท Sourceยง

impl Debug for OwnedFd

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
1.63.0 ยท Sourceยง

impl Drop for OwnedFd

Sourceยง

fn drop(&mut self)

Executes the destructor for this type. Read more
Sourceยง

fn pin_drop(self: Pin<&mut Self>)

๐Ÿ”ฌThis is a nightly-only experimental API. (pin_ergonomics #130494)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
1.63.0 ยท Sourceยง

impl From<ChildStderr> for OwnedFd

Available on Unix only.
Sourceยง

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 Unix only.
Sourceยง

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 Unix only.
Sourceยง

fn from(child_stdout: ChildStdout) -> OwnedFd

Takes ownership of a ChildStdoutโ€™s file descriptor.

Sourceยง

impl From<Dir> for OwnedFd

Sourceยง

fn from(value: Dir) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<File> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(file: File) -> OwnedFd

Takes ownership of a Fileโ€™s underlying file descriptor.

Sourceยง

impl From<OwnedFd> for PidFd

Available on Linux only.
Sourceยง

fn from(fd: OwnedFd) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for UnixDatagram

Available on Unix only.
Sourceยง

fn from(owned: OwnedFd) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for UnixListener

Available on Unix only.
Sourceยง

fn from(fd: OwnedFd) -> UnixListener

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for UnixStream

Available on Unix only.
Sourceยง

fn from(owned: OwnedFd) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for Stdio

Available on Unix only.
Sourceยง

fn from(fd: OwnedFd) -> Stdio

Takes ownership of a file descriptor and returns a Stdio that can attach a stream to it.

1.74.0 ยท Sourceยง

impl From<OwnedFd> for ChildStdin

Available on Unix only.

Creates a ChildStdin from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

Sourceยง

fn from(fd: OwnedFd) -> ChildStdin โ“˜

Converts to this type from the input type.
1.74.0 ยท Sourceยง

impl From<OwnedFd> for ChildStdout

Available on Unix only.

Creates a ChildStdout from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

Sourceยง

fn from(fd: OwnedFd) -> ChildStdout โ“˜

Converts to this type from the input type.
1.74.0 ยท Sourceยง

impl From<OwnedFd> for ChildStderr

Available on Unix only.

Creates a ChildStderr from the provided OwnedFd.

The provided file descriptor must point to a pipe with the CLOEXEC flag set.

Sourceยง

fn from(fd: OwnedFd) -> ChildStderr โ“˜

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for File

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Returns a File that takes ownership of the given file descriptor.

1.63.0 ยท Sourceยง

impl From<OwnedFd> for TcpStream

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for TcpListener

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<OwnedFd> for UdpSocket

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
1.87.0 ยท Sourceยง

impl From<OwnedFd> for PipeReader

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
1.87.0 ยท Sourceยง

impl From<OwnedFd> for PipeWriter

Available on non-Trusty only.
Sourceยง

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
Sourceยง

impl From<OwnedFd> for Dir

Sourceยง

fn from(value: OwnedFd) -> Self

Converts to this type from the input type.
Sourceยง

impl From<PidFd> for OwnedFd

Available on Linux only.
Sourceยง

fn from(pid_fd: PidFd) -> Self

Converts to this type from the input type.
1.87.0 ยท Sourceยง

impl From<PipeReader> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(pipe: PipeReader) -> Self

Converts to this type from the input type.
1.87.0 ยท Sourceยง

impl From<PipeWriter> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(pipe: PipeWriter) -> Self

Converts to this type from the input type.
1.63.0 ยท Sourceยง

impl From<TcpListener> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(tcp_listener: TcpListener) -> OwnedFd

Takes ownership of a TcpListenerโ€™s socket file descriptor.

1.63.0 ยท Sourceยง

impl From<TcpStream> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(tcp_stream: TcpStream) -> OwnedFd

Takes ownership of a TcpStreamโ€™s socket file descriptor.

1.63.0 ยท Sourceยง

impl From<UdpSocket> for OwnedFd

Available on non-Trusty only.
Sourceยง

fn from(udp_socket: UdpSocket) -> OwnedFd

Takes ownership of a UdpSocketโ€™s file descriptor.

1.63.0 ยท Sourceยง

impl From<UnixDatagram> for OwnedFd

Available on Unix only.
Sourceยง

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 Unix only.
Sourceยง

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 Unix only.
Sourceยง

fn from(unix_stream: UnixStream) -> OwnedFd

Takes ownership of a UnixStreamโ€™s socket file descriptor.

1.63.0 ยท Sourceยง

impl FromRawFd for OwnedFd

Sourceยง

unsafe fn from_raw_fd(fd: RawFd) -> Self

Constructs a new instance of Self from the given raw file descriptor.

ยงSafety

The resource pointed to by fd must be open and suitable for assuming ownership. The resource must not require any cleanup other than close.

ยงPanics

Panics if the raw file descriptor has the value -1.

1.63.0 ยท Sourceยง

impl IntoRawFd for OwnedFd

Sourceยง

fn into_raw_fd(self) -> RawFd

Consumes this object, returning the raw underlying file descriptor. Read more
1.70.0 ยท Sourceยง

impl IsTerminal for OwnedFd

Sourceยง

fn is_terminal(&self) -> bool

Returns true if the descriptor/handle refers to a terminal/tty. Read more

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.