Struct io_lifetimes::OwnedFd
source · [−]#[repr(transparent)]pub struct OwnedFd { /* private fields */ }
Expand description
An owned file descriptor.
This closes the file descriptor on drop.
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
.
Implementations
Trait Implementations
sourceimpl AsFd for OwnedFd
impl AsFd for OwnedFd
sourcefn as_fd(&self) -> BorrowedFd<'_>
fn as_fd(&self) -> BorrowedFd<'_>
Borrows the file descriptor. Read more
sourceimpl From<ChildStderr> for OwnedFd
impl From<ChildStderr> for OwnedFd
sourcefn from(owned: ChildStderr) -> Self
fn from(owned: ChildStderr) -> Self
Performs the conversion.
sourceimpl From<ChildStdin> for OwnedFd
impl From<ChildStdin> for OwnedFd
sourcefn from(owned: ChildStdin) -> Self
fn from(owned: ChildStdin) -> Self
Performs the conversion.
sourceimpl From<ChildStdout> for OwnedFd
impl From<ChildStdout> for OwnedFd
sourcefn from(owned: ChildStdout) -> Self
fn from(owned: ChildStdout) -> Self
Performs the conversion.
sourceimpl From<OwnedFd> for TcpListener
impl From<OwnedFd> for TcpListener
sourceimpl From<OwnedFd> for UnixStream
impl From<OwnedFd> for UnixStream
sourceimpl From<OwnedFd> for UnixListener
impl From<OwnedFd> for UnixListener
sourceimpl From<OwnedFd> for UnixDatagram
impl From<OwnedFd> for UnixDatagram
sourceimpl From<TcpListener> for OwnedFd
impl From<TcpListener> for OwnedFd
sourcefn from(owned: TcpListener) -> Self
fn from(owned: TcpListener) -> Self
Performs the conversion.
sourceimpl From<UnixDatagram> for OwnedFd
impl From<UnixDatagram> for OwnedFd
sourcefn from(owned: UnixDatagram) -> Self
fn from(owned: UnixDatagram) -> Self
Performs the conversion.
sourceimpl From<UnixListener> for OwnedFd
impl From<UnixListener> for OwnedFd
sourcefn from(owned: UnixListener) -> Self
fn from(owned: UnixListener) -> Self
Performs the conversion.
sourceimpl From<UnixStream> for OwnedFd
impl From<UnixStream> for OwnedFd
sourcefn from(owned: UnixStream) -> Self
fn from(owned: UnixStream) -> Self
Performs the conversion.
sourceimpl FromFd for OwnedFd
impl FromFd for OwnedFd
sourcefn from_fd(owned: OwnedFd) -> Self
fn from_fd(owned: OwnedFd) -> Self
Constructs a new instance of Self
from the given file descriptor. Read more
sourcefn from_into_fd<Owned: IntoFd>(into_owned: Owned) -> Self where
Self: Sized,
fn from_into_fd<Owned: IntoFd>(into_owned: Owned) -> Self where
Self: Sized,
Constructs a new instance of Self
from the given file descriptor
converted from into_owned
. Read more
sourceimpl FromRawFd for OwnedFd
impl FromRawFd for OwnedFd
sourceunsafe fn from_raw_fd(fd: RawFd) -> Self
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 raw
must be open and suitable for assuming
ownership.
sourceimpl IntoRawFd for OwnedFd
impl IntoRawFd for OwnedFd
sourcefn into_raw_fd(self) -> RawFd
fn into_raw_fd(self) -> RawFd
Consumes this object, returning the raw underlying file descriptor. Read more
impl FilelikeViewType for OwnedFd
Auto Trait Implementations
impl RefUnwindSafe for OwnedFd
impl Send for OwnedFd
impl Sync for OwnedFd
impl Unpin for OwnedFd
impl UnwindSafe for OwnedFd
Blanket Implementations
sourceimpl<T> AsRawFilelike for T where
T: AsRawFd,
impl<T> AsRawFilelike for T where
T: AsRawFd,
sourcefn as_raw_filelike(&self) -> i32
fn as_raw_filelike(&self) -> i32
Returns the raw value.
sourceimpl<T> AsRawSocketlike for T where
T: AsRawFd,
impl<T> AsRawSocketlike for T where
T: AsRawFd,
sourcefn as_raw_socketlike(&self) -> i32
fn as_raw_socketlike(&self) -> i32
Returns the raw value.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> FromRawFilelike for T where
T: FromRawFd,
impl<T> FromRawFilelike for T where
T: FromRawFd,
sourceunsafe fn from_raw_filelike(raw: i32) -> T
unsafe fn from_raw_filelike(raw: i32) -> T
Constructs Self
from the raw value. Read more
sourceimpl<T> FromRawSocketlike for T where
T: FromRawFd,
impl<T> FromRawSocketlike for T where
T: FromRawFd,
sourceunsafe fn from_raw_socketlike(raw: i32) -> T
unsafe fn from_raw_socketlike(raw: i32) -> T
Constructs Self
from the raw value. Read more
sourceimpl<T> IntoRawFilelike for T where
T: IntoRawFd,
impl<T> IntoRawFilelike for T where
T: IntoRawFd,
sourcefn into_raw_filelike(self) -> i32
fn into_raw_filelike(self) -> i32
Returns the raw value.
sourceimpl<T> IntoRawSocketlike for T where
T: IntoRawFd,
impl<T> IntoRawSocketlike for T where
T: IntoRawFd,
sourcefn into_raw_socketlike(self) -> i32
fn into_raw_socketlike(self) -> i32
Returns the raw value.