[][src]Struct heim::process::Process

pub struct Process(_);

OS process.

Methods

impl Process[src]

pub fn pid(&self) -> i32[src]

Returns the process pid.

pub fn parent_pid(&self) -> impl Future<Output = Result<i32, ProcessError>>[src]

Returns future which resolves into the process parent pid.

pub fn name(&self) -> impl Future<Output = Result<String, ProcessError>>[src]

Returns future which resolves into the process name.

pub fn exe(&self) -> impl Future<Output = Result<PathBuf, ProcessError>>[src]

Returns future which resolves into the process executable as an absolute path.

pub fn status(&self) -> impl Future<Output = Result<Status, ProcessError>>[src]

Returns future which resolves into the current process status.

Trait Implementations

impl Debug for Process[src]

Auto Trait Implementations

impl Sync for Process

impl Send for Process

impl Unpin for Process

impl RefUnwindSafe for Process

impl UnwindSafe for Process

Blanket Implementations

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

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

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