[][src]Struct over_there_core::LocalProc

pub struct LocalProc { /* fields omitted */ }

Methods

impl LocalProc[src]

pub fn new(child: Child) -> Self[src]

pub fn id(&self) -> u32[src]

pub fn inner(&self) -> &Child[src]

pub async fn exit_status<'_>(&'_ mut self) -> Option<ExitStatus>[src]

pub fn spawn(self) -> Self[src]

Spawns io-processing task for stdout/stderr Will panic if not in tokio runtime

pub async fn write_stdin<'_, '_>(&'_ mut self, buf: &'_ [u8]) -> Result<()>[src]

pub async fn read_stdout<'_>(&'_ mut self) -> Result<Vec<u8>>[src]

pub async fn read_stderr<'_>(&'_ mut self) -> Result<Vec<u8>>[src]

pub fn kill(&mut self) -> Result<()>[src]

pub async fn kill_and_wait(__arg0: Self) -> Result<Output>[src]

Trait Implementations

impl Debug for LocalProc[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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