std::pipe

Struct PipeReader

source
pub struct PipeReader(/* private fields */);
๐Ÿ”ฌThis is a nightly-only experimental API. (anonymous_pipe #127154)
Expand description

Read end of the anonymous pipe.

Implementationsยง

sourceยง

impl PipeReader

source

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

๐Ÿ”ฌThis is a nightly-only experimental API. (anonymous_pipe #127154)

Create a new PipeReader instance that shares the same underlying file description.

Trait Implementationsยง

sourceยง

impl AsFd for PipeReader

sourceยง

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

Borrows the file descriptor. Read more
sourceยง

impl AsRawFd for PipeReader

sourceยง

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more
sourceยง

impl Debug for PipeReader

sourceยง

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

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

impl From<OwnedFd> for PipeReader

sourceยง

fn from(owned_fd: OwnedFd) -> Self

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

impl From<PipeReader> for OwnedFd

sourceยง

fn from(pipe: PipeReader) -> Self

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

impl From<PipeReader> for Stdio

sourceยง

fn from(pipe: PipeReader) -> Self

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

impl FromRawFd for PipeReader

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 IntoRawFd for PipeReader

sourceยง

fn into_raw_fd(self) -> RawFd

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

impl Read for &PipeReader

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_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
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
sourceยง

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

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Pull some bytes from this source into the specified buffer. 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
sourceยง

impl Read for PipeReader

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_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
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
sourceยง

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

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf #78485)
Pull some bytes from this source into the specified buffer. 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, 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.