Skip to main content

running_process_platform_internal/
platform.rs

1//! Neutral indexes for host-mechanics capabilities.
2//!
3//! Concrete host selection and implementations are private to this package.
4//! Callers will use these stable capability names rather than selecting a host.
5
6pub mod autostart;
7pub mod executable;
8pub mod fs;
9pub mod host;
10#[cfg(feature = "ipc")]
11pub mod ipc;
12pub mod private_dir;
13pub mod process;
14pub mod resources;
15#[cfg(feature = "pty")]
16pub mod terminal;
17#[cfg(feature = "terminal-graphics")]
18pub mod terminal_graphics;
19pub mod terminal_input;
20pub mod window_icon;