DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/Processes.rs
1//! Child-process RPC service. Placeholder for spawn + stdio + signal
2//! handling for Cocoon. Status: not yet wired; all exports are cfg-gated
3//! behind the `child-processes` feature.
4
5#[cfg(feature = "child-processes")]
6pub struct Struct;
7
8#[cfg(feature = "child-processes")]
9impl Struct {
10 pub fn new() -> Self { Struct }
11}
12
13#[cfg(feature = "child-processes")]
14impl Default for Struct {
15 fn default() -> Self { Self::new() }
16}