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