Skip to main content

PipeReader

Struct PipeReader 

1.87.0 · Source
pub struct PipeReader(/* private fields */);
Expand description

Read end of an anonymous pipe.

Implementations§

Source§

impl PipeReader

1.87.0 · Source

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

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

§Examples
use std::fs;
use std::io::{pipe, Write};
use std::process::Command;
const NUM_SLOT: u8 = 2;
const NUM_PROC: u8 = 5;
const OUTPUT: &str = "work.txt";

let mut jobs = vec![];
let (reader, mut writer) = pipe()?;

// Write NUM_SLOT characters the pipe.
writer.write_all(&[b'|'; NUM_SLOT as usize])?;

// Spawn several processes that read a character from the pipe, do some work, then
// write back to the pipe. When the pipe is empty, the processes block, so only
// NUM_SLOT processes can be working at any given time.
for _ in 0..NUM_PROC {
    jobs.push(
        Command::new("bash")
            .args(["-c",
                &format!(
                     "read -n 1\n\
                      echo -n 'x' >> '{OUTPUT}'\n\
                      echo -n '|'",
                ),
            ])
            .stdin(reader.try_clone()?)
            .stdout(writer.try_clone()?)
            .spawn()?,
    );
}

// Wait for all jobs to finish.
for mut job in jobs {
    job.wait()?;
}

// Check our work and clean up.
let xs = fs::read_to_string(OUTPUT)?;
fs::remove_file(OUTPUT)?;
assert_eq!(xs, "x".repeat(NUM_PROC.into()));

Trait Implementations§

1.87.0 · Source§

impl AsFd for PipeReader

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

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

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Borrows the file descriptor. Read more
1.87.0 · Source§

impl AsHandle for PipeReader

Available on Windows only.
Source§

fn as_handle(&self) -> BorrowedHandle<'_>

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Borrows the handle. Read more
1.87.0 · Source§

impl AsRawFd for PipeReader

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

fn as_raw_fd(&self) -> RawFd

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Extracts the raw file descriptor. Read more
1.87.0 · Source§

impl AsRawHandle for PipeReader

Available on Windows only.
Source§

fn as_raw_handle(&self) -> RawHandle

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Extracts the raw handle. Read more
1.87.0 · Source§

impl Debug for PipeReader

Source§

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

Formats the value using the given formatter. Read more
1.87.0 · Source§

impl From<OwnedFd> for PipeReader

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

fn from(owned_fd: OwnedFd) -> Self

Converts to this type from the input type.
1.87.0 · Source§

impl From<OwnedHandle> for PipeReader

Available on Windows only.
Source§

fn from(owned_handle: OwnedHandle) -> Self

Converts to this type from the input type.
1.87.0 · Source§

impl From<PipeReader> for OwnedHandle

Available on Windows only.
Source§

fn from(pipe: PipeReader) -> Self

Converts to this type from the input type.
1.87.0 · Source§

impl From<PipeReader> for OwnedFd

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

fn from(pipe: PipeReader) -> Self

Converts to this type from the input type.
1.87.0 · Source§

impl From<PipeReader> for Stdio

Source§

fn from(pipe: PipeReader) -> Self

Converts to this type from the input type.
1.87.0 · Source§

impl FromRawFd for PipeReader

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

unsafe fn from_raw_fd(raw_fd: RawFd) -> Self

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Constructs a new instance of Self from the given raw file descriptor. Read more
1.87.0 · Source§

impl FromRawHandle for PipeReader

Available on Windows only.
Source§

unsafe fn from_raw_handle(raw_handle: RawHandle) -> Self

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Constructs a new I/O object from the specified raw handle. Read more
1.87.0 · Source§

impl IntoRawFd for PipeReader

Available on (Hermit or Motor OS or Trusty or Unix or WASI) and non-Trusty only.
Source§

fn into_raw_fd(self) -> RawFd

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Consumes this object, returning the raw underlying file descriptor. Read more
1.87.0 · Source§

impl IntoRawHandle for PipeReader

Available on Windows only.
Source§

fn into_raw_handle(self) -> RawHandle

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Consumes this object, returning the raw underlying handle. Read more
1.87.0 · Source§

impl Read for &PipeReader

Source§

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

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
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<'_, u8>) -> 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<'_, u8>) -> 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” adapter 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§

fn read_array<const N: usize>(&mut self) -> Result<[u8; N]>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_array #148848)
Read and return a fixed array of bytes from this source. Read more
Source§

fn read_le<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in little-endian order. Read more
Source§

fn read_be<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in big-endian order. Read more
1.87.0 · Source§

impl Read for PipeReader

Source§

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

This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
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<'_, u8>) -> 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<'_, u8>) -> 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” adapter 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§

fn read_array<const N: usize>(&mut self) -> Result<[u8; N]>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_array #148848)
Read and return a fixed array of bytes from this source. Read more
Source§

fn read_le<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in little-endian order. Read more
Source§

fn read_be<T: FromEndianBytes>(&mut self) -> Result<T>
where Self: Sized,

🔬This is a nightly-only experimental API. (read_le #156983)
Read and return a type (e.g. an integer) in big-endian order. 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.