Struct devela::_libstd::os::fd::OwnedFd

1.63.0 · source ·
pub struct OwnedFd { /* private fields */ }
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<OwnedFd, Error>

Available on Unix only.

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) -> i32

Extracts the raw file descriptor. Read more
1.63.0 · source§

impl Debug for OwnedFd

source§

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

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
1.63.0 · source§

impl From<ChildStderr> for OwnedFd

source§

fn from(child_stderr: ChildStderr) -> OwnedFd

Takes ownership of a ChildStderr’s file descriptor.

1.63.0 · source§

impl From<ChildStdin> for OwnedFd

source§

fn from(child_stdin: ChildStdin) -> OwnedFd

Takes ownership of a ChildStdin’s file descriptor.

1.63.0 · source§

impl From<ChildStdout> for OwnedFd

source§

fn from(child_stdout: ChildStdout) -> OwnedFd

Takes ownership of a ChildStdout’s file descriptor.

1.63.0 · source§

impl From<File> for OwnedFd

source§

fn from(file: File) -> OwnedFd

Takes ownership of a File’s underlying file descriptor.

1.74.0 · source§

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.

source§

fn from(fd: OwnedFd) -> ChildStderr

Converts to this type from the input type.
1.74.0 · source§

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.

source§

fn from(fd: OwnedFd) -> ChildStdin

Converts to this type from the input type.
1.74.0 · source§

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§

fn from(fd: OwnedFd) -> ChildStdout

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for File

source§

fn from(owned_fd: OwnedFd) -> File

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

source§

impl From<OwnedFd> for PidFd

source§

fn from(fd: OwnedFd) -> PidFd

Converts to this type from the input type.
source§

impl From<OwnedFd> for PipeReader

source§

fn from(owned_fd: OwnedFd) -> PipeReader

Converts to this type from the input type.
source§

impl From<OwnedFd> for PipeWriter

source§

fn from(owned_fd: OwnedFd) -> PipeWriter

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for Stdio

source§

fn from(fd: OwnedFd) -> Stdio

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

1.63.0 · source§

impl From<OwnedFd> for TcpListener

source§

fn from(owned_fd: OwnedFd) -> TcpListener

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for TcpStream

source§

fn from(owned_fd: OwnedFd) -> TcpStream

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for UdpSocket

source§

fn from(owned_fd: OwnedFd) -> UdpSocket

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for UnixDatagram

source§

fn from(owned: OwnedFd) -> UnixDatagram

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for UnixListener

source§

fn from(fd: OwnedFd) -> UnixListener

Converts to this type from the input type.
1.63.0 · source§

impl From<OwnedFd> for UnixStream

source§

fn from(owned: OwnedFd) -> UnixStream

Converts to this type from the input type.
source§

impl From<PidFd> for OwnedFd

source§

fn from(pid_fd: PidFd) -> OwnedFd

Converts to this type from the input type.
source§

impl From<PipeReader> for OwnedFd

source§

fn from(pipe: PipeReader) -> OwnedFd

Converts to this type from the input type.
source§

impl From<PipeWriter> for OwnedFd

source§

fn from(pipe: PipeWriter) -> OwnedFd

Converts to this type from the input type.
1.63.0 · source§

impl From<TcpListener> for OwnedFd

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

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

source§

fn from(udp_socket: UdpSocket) -> OwnedFd

Takes ownership of a UdpSocket’s file descriptor.

1.63.0 · source§

impl From<UnixDatagram> for OwnedFd

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

source§

fn from(listener: UnixListener) -> OwnedFd

Takes ownership of a UnixListener’s socket file descriptor.

1.63.0 · source§

impl From<UnixStream> for OwnedFd

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: i32) -> OwnedFd

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.

1.63.0 · source§

impl IntoRawFd for OwnedFd

source§

fn into_raw_fd(self) -> i32

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> Also for T

source§

fn also_mut<F: FnOnce(&mut Self)>(self, f: F) -> Self

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
source§

fn also_ref<F: FnOnce(&Self)>(self, f: F) -> Self

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
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, Res> Apply<Res> for T
where T: ?Sized,

source§

fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Res
where Self: Sized,

Apply a function which takes the parameter by value.
source§

fn apply_ref<F: FnOnce(&Self) -> Res>(&self, f: F) -> Res

Apply a function which takes the parameter by shared reference.
source§

fn apply_mut<F: FnOnce(&mut Self) -> Res>(&mut self, f: F) -> Res

Apply a function which takes the parameter by exclusive reference.
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> ByteSized for T

source§

const BYTE_ALIGN: usize = _

The alignment of this type in bytes.
source§

const BYTE_SIZE: usize = _

The size of this type in bytes.
source§

const PTR_BYTES: usize = 4usize

The size of a pointer in bytes, for the current platform.
source§

const PTR_BITS: usize = 32usize

The size of a pointer in bits, for the current platform.
source§

const LITTLE_ENDIAN: bool = true

True if the system’s architecture is little-endian.
source§

const BIG_ENDIAN: bool = false

True if the system’s architecture is big-endian.
source§

fn byte_align(&self) -> usize

Returns the alignment of this type in bytes.
source§

fn byte_size(&self) -> usize

Returns the size of this type in bytes. Read more
source§

fn ptr_size_ratio(&self) -> [usize; 2]

Returns the size ratio between PTR_BYTES and BYTE_SIZE. Read more
source§

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

source§

fn type_of(&self) -> TypeId

Returns the TypeId of self. Read more
source§

fn type_name(&self) -> &'static str

Returns the type name of self. Read more
source§

fn type_is<T: 'static>(&self) -> bool

Returns true if Self is of type T. Read more
source§

fn as_any_ref(&self) -> &dyn Any
where Self: Sized,

Upcasts &self as &dyn Any. Read more
source§

fn as_any_mut(&mut self) -> &mut dyn Any
where Self: Sized,

Upcasts &mut self as &mut dyn Any. Read more
source§

fn as_any_box(self: Box<Self>) -> Box<dyn Any>
where Self: Sized,

Upcasts Box<self> as Box<dyn Any>. Read more
source§

fn downcast_ref<T: 'static>(&self) -> Option<&T>

Available on crate feature unsafe_dyn only.
Returns some shared reference to the inner value if it is of type T. Read more
source§

fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>

Available on crate feature unsafe_dyn only.
Returns some exclusive reference to the inner value if it is of type T. Read more
source§

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

source§

const NEEDS_DROP: bool = _

Know whether dropping values of this type matters, in compile-time.
source§

fn mem_needs_drop(&self) -> bool

Returns true if dropping values of this type matters. Read more
source§

fn mem_drop(self)
where Self: Sized,

Drops self by running its destructor. Read more
source§

fn mem_forget(self)
where Self: Sized,

Forgets about self without running its destructor. Read more
source§

fn mem_replace(&mut self, other: Self) -> Self
where Self: Sized,

Replaces self with other, returning the previous value of self. Read more
source§

fn mem_take(&mut self) -> Self
where Self: Default,

Replaces self with its default value, returning the previous value of self. Read more
source§

fn mem_swap(&mut self, other: &mut Self)
where Self: Sized,

Swaps the value of self and other without deinitializing either one. Read more
source§

fn mem_as_bytes(&self) -> &[u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &[u8]. Read more
source§

fn mem_as_bytes_mut(&mut self) -> &mut [u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &mut [u8].
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>,

§

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>,

§

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.