[][src]Struct pwfr::core::ebuild::executor::Job

pub struct Job { /* fields omitted */ }

Represents a job. Refer https://www.gnu.org/software/libc/manual/html_node/Implementing-a-Shell.html

Methods

impl Job[src]

pub fn new(id: JobId, pgid: Pid, cmd: String, processes: Vec<Pid>) -> Job[src]

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

pub fn cmd(&self) -> &str[src]

pub fn state(&self, executor: &Executor) -> &'static str[src]

pub fn completed(&self, executor: &Executor) -> bool[src]

pub fn stopped(&self, executor: &Executor) -> bool[src]

Auto Trait Implementations

impl Send for Job

impl !Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

impl !RefUnwindSafe for Job

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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