Struct sandbox_ipc::ProcessHandle[][src]

pub struct ProcessHandle(_);

ProcessHandles are needed to establish unsealed channels (i.e. channels that can transmit OS resources).

Security

You should not allow a less trusted process to either hold the ProcessHandle of or an unsealed channel to a more trusted process unless absolutely necessary. On some platforms ProcessHandles and unsealed channels allow the holder to interfere with the other process.

Methods

impl ProcessHandle
[src]

Gets the ProcessHandle for the current process.

Creates a copy of this ProcessHandle.

Trait Implementations

impl Debug for ProcessHandle
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations