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 = "independent-spawn")]
11pub mod independent_spawn;
12#[cfg(feature = "ipc")]
13pub mod ipc;
14pub mod private_dir;
15pub mod process;
16pub mod resources;
17#[cfg(feature = "pty")]
18pub mod terminal;
19#[cfg(feature = "terminal-graphics")]
20pub mod terminal_graphics;
21pub mod terminal_input;
22#[cfg(feature = "window-icon")]
23pub mod window_icon;