Struct FileDesc

Source
pub struct FileDesc(OwnedFd);
๐Ÿ”ฌThis is a nightly-only experimental API. (fd)

Tuple Fieldsยง

ยง0: OwnedFd
๐Ÿ”ฌThis is a nightly-only experimental API. (fd)

Implementationsยง

Sourceยง

impl FileDesc

Source

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

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read(&self, buf: &mut [u8]) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn is_read_vectored(&self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read_to_end(&self, buf: &mut Vec<u8>) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read_at(&self, buf: &mut [u8], offset: u64) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read_buf(&self, cursor: BorrowedCursor<'_>) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn read_vectored_at( &self, bufs: &mut [IoSliceMut<'_>], offset: u64, ) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn write(&self, buf: &[u8]) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn write_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn is_write_vectored(&self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn write_vectored_at( &self, bufs: &[IoSlice<'_>], offset: u64, ) -> Result<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn set_cloexec(&self) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)
Source

pub fn duplicate(&self) -> Result<FileDesc>

๐Ÿ”ฌThis is a nightly-only experimental API. (fd)

Trait Implementationsยง

Sourceยง

impl AsFd for FileDesc

Sourceยง

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

Borrows the file descriptor. Read more
Sourceยง

impl AsInner<FileDesc> for File

Sourceยง

impl AsInner<FileDesc> for PidFd

Sourceยง

impl AsInner<FileDesc> for Socket

Sourceยง

impl AsInner<OwnedFd> for FileDesc

Sourceยง

impl AsInnerMut<FileDesc> for File

Sourceยง

fn as_inner_mut(&mut self) -> &mut FileDesc

Sourceยง

impl AsRawFd for FileDesc

Sourceยง

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
Sourceยง

impl Debug for FileDesc

Sourceยง

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

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

impl From<FileDesc> for Stdio

Sourceยง

fn from(fd: FileDesc) -> Stdio

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

impl FromInner<FileDesc> for AnonPipe

Sourceยง

impl FromInner<FileDesc> for File

Sourceยง

fn from_inner(file_desc: FileDesc) -> Self

Sourceยง

impl FromInner<FileDesc> for PidFd

Sourceยง

fn from_inner(inner: FileDesc) -> Self

Sourceยง

impl FromInner<FileDesc> for PipeReader

Sourceยง

fn from_inner(inner: FileDesc) -> Self

Sourceยง

impl FromInner<FileDesc> for PipeWriter

Sourceยง

fn from_inner(inner: FileDesc) -> Self

Sourceยง

impl FromInner<FileDesc> for Socket

Sourceยง

fn from_inner(file_desc: FileDesc) -> Self

Sourceยง

impl FromInner<OwnedFd> for FileDesc

Sourceยง

fn from_inner(owned_fd: OwnedFd) -> Self

Sourceยง

impl FromRawFd for FileDesc

Sourceยง

unsafe fn from_raw_fd(raw_fd: RawFd) -> Self

Constructs a new instance of Self from the given raw file descriptor. Read more
Sourceยง

impl IntoInner<FileDesc> for AnonPipe

Sourceยง

impl IntoInner<FileDesc> for File

Sourceยง

impl IntoInner<FileDesc> for PidFd

Sourceยง

impl IntoInner<FileDesc> for PipeReader

Sourceยง

impl IntoInner<FileDesc> for PipeWriter

Sourceยง

impl IntoInner<FileDesc> for Socket

Sourceยง

impl IntoInner<OwnedFd> for FileDesc

Sourceยง

impl IntoRawFd for FileDesc

Sourceยง

fn into_raw_fd(self) -> RawFd

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

impl<'a> Read for &'a FileDesc

Sourceยง

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Sourceยง

fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Pull some bytes from this source into the specified buffer. Read more
Sourceยง

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>

Like read, except that it reads into a slice of buffers. Read more
Sourceยง

fn is_read_vectored(&self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (can_vector #69941)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 ยท Sourceยง

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize>

Reads all bytes until EOF in this source, placing them into buf. Read more
1.0.0 ยท Sourceยง

fn read_to_string(&mut self, buf: &mut String) -> Result<usize>

Reads all bytes until EOF in this source, appending them to buf. Read more
1.6.0 ยท Sourceยง

fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>

Reads the exact number of bytes required to fill buf. Read more
Sourceยง

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<()>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Reads the exact number of bytes required to fill cursor. Read more
1.0.0 ยท Sourceยง

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

Creates a โ€œby referenceโ€ adaptor for this instance of Read. Read more
1.0.0 ยท Sourceยง

fn bytes(self) -> Bytes<Self> โ“˜
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 ยท Sourceยง

fn chain<R: Read>(self, next: R) -> Chain<Self, R> โ“˜
where Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 ยท Sourceยง

fn take(self, limit: u64) -> Take<Self> โ“˜
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. 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> SizedTypeProperties for T

Sourceยง

#[doc(hidden)] const IS_ZST: bool = _

๐Ÿ”ฌThis is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Sourceยง

#[doc(hidden)] const LAYOUT: Layout = _

๐Ÿ”ฌThis is a nightly-only experimental API. (sized_type_properties)
Sourceยง

#[doc(hidden)] const MAX_SLICE_LEN: usize = _

๐Ÿ”ฌThis is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. Read more
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.