[][src]Struct pyc_shell::shell::proc::ShellProc

pub struct ShellProc {
    pub state: ShellProcState,
    pub exit_status: u8,
    pub pid: i32,
    pub wrkdir: PathBuf,
    pub exec_time: Duration,
    // some fields omitted
}

ShellProc

Shell Proc represents an instance of the shell process wrapper

Fields

state: ShellProcStateexit_status: u8pid: i32wrkdir: PathBufexec_time: Duration

Implementations

impl ShellProc[src]

pub fn start(argv: Vec<String>) -> Result<ShellProc, ShellError>[src]

start

Start a process

pub fn cleanup(&mut self) -> Result<u8, ShellError>[src]

cleanup

cleanup shell once exited. Returns the shell exit code

pub fn raise(&self, signal: Signal) -> Result<(), ShellError>[src]

raise

Send signal to shell

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

kill

Kill shell sending SIGKILL

pub fn read(&mut self) -> Result<(Option<String>, Option<String>), ShellError>[src]

read

Read from child pipes

pub fn write(&mut self, data: String) -> Result<(), ShellError>[src]

write

Write to child process stdin

pub fn update_state(&mut self) -> ShellProcState[src]

update_state

Update shell running state checking if the other thread has terminated

Trait Implementations

impl Debug for ShellProc[src]

impl Drop for ShellProc[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, 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>,