DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/Windows.rs
1//! Window-management RPC service. Placeholder for the Grove + Cocoon
2//! extension-host roadmap (window/document/webview lifecycle). Status:
3//! not yet wired; all exports are cfg-gated behind `grove` or `cocoon`.
4
5#[cfg(any(feature = "grove", feature = "cocoon"))]
6pub struct Struct;
7
8#[cfg(any(feature = "grove", feature = "cocoon"))]
9impl Struct {
10 pub fn new() -> Self { Struct }
11}
12
13#[cfg(any(feature = "grove", feature = "cocoon"))]
14impl Default for Struct {
15 fn default() -> Self { Self::new() }
16}