Struct async_std::process::ChildStdin  [−][src]
pub struct ChildStdin(_);
A handle to a child process’s standard input (stdin).
When a ChildStdin is dropped, the underlying handle gets clossed. If the child process was
previously blocked on input, it becomes unblocked after dropping.
Implementations
impl ChildStdin[src]
impl ChildStdin[src]pub async fn into_stdio(self) -> Result<Stdio, Error>[src]
Convert async_process::ChildStdin into std::process::Stdio.
You can use it to associate to the next process.
Examples
use async_process::Command; use std::process::Stdio; let mut ls_child = Command::new("ls").stdin(Stdio::piped()).spawn()?; let stdio:Stdio = ls_child.stdin.take().unwrap().into_stdio().await?; let mut echo_child = Command::new("echo").arg("./").stdout(stdio).spawn()?;
Trait Implementations
impl AsyncWrite for ChildStdin[src]
impl AsyncWrite for ChildStdin[src]pub fn poll_write(
    self: Pin<&mut ChildStdin>, 
    cx: &mut Context<'_>, 
    buf: &[u8]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut ChildStdin>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize, Error>>
pub fn poll_flush(
    self: Pin<&mut ChildStdin>, 
    cx: &mut Context<'_>
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut ChildStdin>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
pub fn poll_close(
    self: Pin<&mut ChildStdin>, 
    cx: &mut Context<'_>
) -> Poll<Result<(), Error>>[src]
self: Pin<&mut ChildStdin>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
pub fn poll_write_vectored(
    self: Pin<&mut Self>, 
    cx: &mut Context<'_>, 
    bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>
Auto Trait Implementations
impl RefUnwindSafe for ChildStdin
impl Send for ChildStdin
impl Sync for ChildStdin
impl Unpin for ChildStdin
impl UnwindSafe for ChildStdin
Blanket Implementations
impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized, [src]
impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized, [src]pub fn write(&'a mut self, buf: &'a [u8]) -> WriteFuture<'a, Self>ⓘNotable traits for WriteFuture<'_, W>
impl<'_, W> Future for WriteFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<usize, Error>; where
    Self: Unpin, [src]
Notable traits for WriteFuture<'_, W>
impl<'_, W> Future for WriteFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<usize, Error>;Self: Unpin,
pub fn write_vectored(
    &'a mut self, 
    bufs: &'a [IoSlice<'a>]
) -> WriteVectoredFuture<'a, Self>ⓘNotable traits for WriteVectoredFuture<'_, W>
impl<'_, W> Future for WriteVectoredFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<usize, Error>; where
    Self: Unpin, [src]
&'a mut self,
bufs: &'a [IoSlice<'a>]
) -> WriteVectoredFuture<'a, Self>ⓘ
Notable traits for WriteVectoredFuture<'_, W>
impl<'_, W> Future for WriteVectoredFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<usize, Error>;Self: Unpin,
pub fn write_all(&'a mut self, buf: &'a [u8]) -> WriteAllFuture<'a, Self>ⓘNotable traits for WriteAllFuture<'_, W>
impl<'_, W> Future for WriteAllFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>; where
    Self: Unpin, [src]
Notable traits for WriteAllFuture<'_, W>
impl<'_, W> Future for WriteAllFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>;Self: Unpin,
pub fn flush(&mut self) -> FlushFuture<'_, Self>ⓘNotable traits for FlushFuture<'_, W>
impl<'_, W> Future for FlushFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>; where
    Self: Unpin, [src]
Notable traits for FlushFuture<'_, W>
impl<'_, W> Future for FlushFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>;Self: Unpin,
pub fn close(&mut self) -> CloseFuture<'_, Self>ⓘNotable traits for CloseFuture<'_, W>
impl<'_, W> Future for CloseFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>; where
    Self: Unpin, [src]
Notable traits for CloseFuture<'_, W>
impl<'_, W> Future for CloseFuture<'_, W> where
    W: AsyncWrite + Unpin + ?Sized,     type Output = Result<(), Error>;Self: Unpin,
pub fn boxed_writer<'a>(self) -> Pin<Box<dyn AsyncWrite + 'a + Send, Global>>ⓘ where
    Self: Send + 'a, [src]
Self: Send + 'a,