Struct PipeWriter

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

Write end of an anonymous pipe.

Implementationsยง

Sourceยง

impl PipeWriter

Source

pub fn try_clone(&self) -> Result<PipeWriter, Error>

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

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

ยงExamples
#![feature(anonymous_pipe)]
use std::process::Command;
use std::io::{pipe, Read};
let (mut reader, writer) = pipe()?;

// Spawn a process that writes to stdout and stderr.
let mut peer = Command::new("bash")
    .args([
        "-c",
        "echo -n foo\n\
         echo -n bar >&2"
    ])
    .stdout(writer.try_clone()?)
    .stderr(writer)
    .spawn()?;

// Read and check the result.
let mut msg = String::new();
reader.read_to_string(&mut msg)?;
assert_eq!(&msg, "foobar");

peer.wait()?;

Trait Implementationsยง

Sourceยง

impl AsFd for PipeWriter

Sourceยง

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

Borrows the file descriptor. Read more
Sourceยง

impl AsRawFd for PipeWriter

Sourceยง

fn as_raw_fd(&self) -> i32

Extracts the raw file descriptor. Read more
Sourceยง

impl Debug for PipeWriter

Sourceยง

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

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

impl From<OwnedFd> for PipeWriter

Sourceยง

fn from(owned_fd: OwnedFd) -> PipeWriter โ“˜

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.
Sourceยง

impl From<PipeWriter> for Stdio

Sourceยง

fn from(pipe: PipeWriter) -> Stdio

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

impl FromRawFd for PipeWriter

Sourceยง

unsafe fn from_raw_fd(raw_fd: i32) -> PipeWriter โ“˜

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

impl IntoRawFd for PipeWriter

Sourceยง

fn into_raw_fd(self) -> i32

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

impl Write for &PipeWriter

Sourceยง

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

Writes a buffer into this writer, returning how many bytes were written. Read more
Sourceยง

fn flush(&mut self) -> Result<(), Error>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
Sourceยง

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

Like write, except that it writes from a slice of buffers. Read more
Sourceยง

fn is_write_vectored(&self) -> bool

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

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

Attempts to write an entire buffer into this writer. Read more
Sourceยง

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

๐Ÿ”ฌThis is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 ยท Sourceยง

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

Writes a formatted string into this writer, returning any error encountered. 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 Write. Read more
Sourceยง

impl Write for PipeWriter

Sourceยง

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

Writes a buffer into this writer, returning how many bytes were written. Read more
Sourceยง

fn flush(&mut self) -> Result<(), Error>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
Sourceยง

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

Like write, except that it writes from a slice of buffers. Read more
Sourceยง

fn is_write_vectored(&self) -> bool

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

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

Attempts to write an entire buffer into this writer. Read more
Sourceยง

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

๐Ÿ”ฌThis is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 ยท Sourceยง

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

Writes a formatted string into this writer, returning any error encountered. 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 Write. 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
ยง

impl<T> Any for T
where T: Any,

ยง

fn into_any(self: Box<T>) -> Box<dyn Any>

ยง

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

ยง

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

ยง

impl<T> AnySync for T
where T: Any + Send + Sync,

ยง

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

ยง

impl<T> AsAny for T
where T: Any,

ยง

fn as_any(&self) -> &(dyn Any + 'static)

ยง

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

ยง

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

Gets the type name of self
ยง

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

ยง

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

ยง

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

ยง

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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

impl<T> Downcast for T
where T: AsAny + ?Sized,

ยง

fn is<T>(&self) -> bool
where T: AsAny,

Returns true if the boxed type is the same as T. Read more
ยง

fn downcast_ref<T>(&self) -> Option<&T>
where T: AsAny,

Forward to the method defined on the type Any.
ยง

fn downcast_mut<T>(&mut self) -> Option<&mut T>
where T: AsAny,

Forward to the method defined on the type Any.
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

ยง

impl<T> Instrument for T

ยง

fn instrument(self, span: Span) -> Instrumented<Self> โ“˜

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
ยง

fn in_current_span(self) -> Instrumented<Self> โ“˜

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self> โ“˜

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ“˜
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<T> IntoRequest<T> for T

Sourceยง

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
ยง

impl<Stream> IsTerminal for Stream
where Stream: AsFd,

ยง

fn is_terminal(&self) -> bool

Returns true if this is a terminal. Read more
Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
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.
ยง

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

ยง

fn vzip(self) -> V

ยง

impl<T> WithSubscriber for T

ยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> โ“˜
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
ยง

fn with_current_subscriber(self) -> WithDispatch<Self> โ“˜

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
ยง

impl<W> WriteExt for W
where W: Write + ?Sized,

ยง

fn emit_u64(&mut self, v: u64) -> Result<(), Error>

Output a 64-bit uint
ยง

fn emit_u32(&mut self, v: u32) -> Result<(), Error>

Output a 32-bit uint
ยง

fn emit_u16(&mut self, v: u16) -> Result<(), Error>

Output a 16-bit uint
ยง

fn emit_i64(&mut self, v: i64) -> Result<(), Error>

Output a 64-bit int
ยง

fn emit_i32(&mut self, v: i32) -> Result<(), Error>

Output a 32-bit int
ยง

fn emit_i16(&mut self, v: i16) -> Result<(), Error>

Output a 16-bit int
ยง

fn emit_i8(&mut self, v: i8) -> Result<(), Error>

Output a 8-bit int
ยง

fn emit_u8(&mut self, v: u8) -> Result<(), Error>

Output a 8-bit uint
ยง

fn emit_bool(&mut self, v: bool) -> Result<(), Error>

Output a boolean
ยง

fn emit_slice(&mut self, v: &[u8]) -> Result<(), Error>

Output a byte slice
ยง

impl<W> Writer for W
where W: Write,

ยง

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

Writes the given buf out. See std::io::Write::write_all for more
ยง

impl<T> DartSafe for T

ยง

impl<T> ErasedDestructor for T
where T: 'static,

ยง

impl<T> MaybeSendSync for T