Type Alias RemoteProcess

Source
pub type RemoteProcess = Box<dyn AsHandle + Send + Sync + 'static>;
Expand description

A remote process handle.

This is used when specifying the process to use for mapping memory into a partition. This is necessary because on Windows, it is not possible to map memory from a single process into multiple partitions.

On Unix, this is an empty (uninhabitable) enum.

Aliased Typeยง

struct RemoteProcess(/* private fields */);