DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceAdapters/FilesToWait.rs
1//! `--wait` payload: marker file URI plus the path list whose
2//! close events the launcher is blocked on.
3
4use serde::{Deserialize, Serialize};
5
6use crate::IPC::WindServiceAdapters::FileToOpenOrCreate;
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct Struct {
10 pub wait_marker_file_uri:String,
11
12 pub paths:Vec<FileToOpenOrCreate::Struct>,
13}